i am having way too many issues with swagger, been 3 days and its very frustrating, can someone help

981 views
Skip to first unread message

ash

unread,
May 29, 2015, 5:51:08 PM5/29/15
to swagger-sw...@googlegroups.com
POM file

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">


<modelVersion>4.0.0</modelVersion>


<groupId>com.test.ash</groupId>

<artifactId>ash</artifactId>

<packaging>war</packaging>

<version>0.1-SNAPSHOT</version>

<name>ash</name>


<build>

<plugins>

<plugin>

<groupId>org.apache.maven.plugins</groupId>

<artifactId>maven-compiler-plugin</artifactId>

<version>2.5.1</version>

<inherited>true</inherited>

<configuration>

<source>1.6</source>

<target>1.6</target>

<archive>

<manifestEntries>

<version>${project.version}</version>

</manifestEntries>

</archive>

</configuration>

</plugin>

<plugin>

<groupId>org.apache.maven.plugins</groupId>

<artifactId>maven-surefire-plugin</artifactId>

<version>2.10</version>

</plugin>

<plugin>

<groupId>org.apache.maven.plugins</groupId>

<artifactId>maven-war-plugin</artifactId>

<version>2.1</version>

<configuration>

<webXml>src\main\webapp\WEB-INF\web.xml</webXml>

<packagingExcludes>**/web.xml</packagingExcludes>

<outputDirectory>/Users/owner1/apache-tomcat-8.0.21/webapps</outputDirectory>

</configuration>

</plugin>

</plugins>


</build>



<properties>

<jersey.version>2.2</jersey.version>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<servlet-api-version>2.5</servlet-api-version>

<swagger-version>1.3.0</swagger-version>

<jackson-version>1.9.2</jackson-version>

<jax-rs-version>1.1.1</jax-rs-version>

<json4s-jackson-version>3.2.4</json4s-jackson-version>

<json4s-core-version>3.0.0</json4s-core-version>

<fasterxml-json-version>2.2.2</fasterxml-json-version>

<scala-lang-version>2.11.6</scala-lang-version>

<reflections-version>0.9.9-RC1</reflections-version>

<javassist-version>3.16.1-GA</javassist-version>

<paranamer-version>2.5.2</paranamer-version>

<scannotation-version>1.0.3</scannotation-version>

</properties>


<dependencies>

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-jersey</artifactId>

<version>1.2.2.RELEASE</version>

</dependency>

<dependency>

<groupId>junit</groupId>

<artifactId>junit</artifactId>

<version>4.11</version>

</dependency>

<dependency>

<groupId>mysql</groupId>

<artifactId>mysql-connector-java</artifactId>

<version>5.1.34</version>

</dependency>

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-web</artifactId>

<version>1.2.2.RELEASE</version>

</dependency>

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-data-jpa</artifactId>

<version>1.2.2.RELEASE</version>

</dependency>

<dependency>

<groupId>com.github.springtestdbunit</groupId>

<artifactId>spring-test-dbunit</artifactId>

<version>1.0.0</version>

<scope>test</scope>

</dependency>

<!-- Swagger -->

<dependency>

<groupId>org.codehaus.jackson</groupId>

<artifactId>jackson-jaxrs</artifactId>

<version>${jackson-version}</version>

</dependency>

<dependency>

<groupId>javax.ws.rs</groupId>

<artifactId>jsr311-api</artifactId>

<version>${jax-rs-version}</version>

</dependency>

<dependency>

<groupId>org.json4s</groupId>

<artifactId>json4s-jackson_2.9.1-1</artifactId>

<version>${json4s-jackson-version}</version>

</dependency>

<dependency>

<groupId>org.json4s</groupId>

<artifactId>json4s-core_2.9.2</artifactId>

<version>${json4s-core-version}</version>

</dependency>

<dependency>

<groupId>com.fasterxml.jackson.core</groupId>

<artifactId>jackson-databind</artifactId>

<version>${fasterxml-json-version}</version>

</dependency>

<dependency>

<groupId>com.fasterxml.jackson.core</groupId>

<artifactId>jackson-core</artifactId>

<version>${fasterxml-json-version}</version>

</dependency>

<dependency>

<groupId>com.fasterxml.jackson.core</groupId>

<artifactId>jackson-annotations</artifactId>

<version>${fasterxml-json-version}</version>

</dependency>

<dependency>

<groupId>com.thoughtworks.paranamer</groupId>

<artifactId>paranamer</artifactId>

<version>${paranamer-version}</version>

</dependency>

<dependency>

<groupId>org.scala-lang</groupId>

<artifactId>scala-library</artifactId>

<version>${scala-lang-version}</version>

</dependency>

<dependency>

<groupId>org.reflections</groupId>

<artifactId>reflections</artifactId>

<version>${reflections-version}</version>

</dependency>

<dependency>

<groupId>javax.servlet</groupId>

<artifactId>servlet-api</artifactId>

<version>${servlet-api-version}</version>

<scope>provided</scope>

</dependency>

<dependency>

<groupId>org.javassist</groupId>

<artifactId>javassist</artifactId>

<version>${javassist-version}</version>

</dependency>

<dependency>

<groupId>org.scannotation</groupId>

<artifactId>scannotation</artifactId>

<version>${scannotation-version}</version>

</dependency>

<!-- swagger -->

<dependency>

<groupId>com.wordnik</groupId>

<artifactId>swagger-jersey-jaxrs_2.9.1</artifactId>

<version>${swagger-version}</version>

</dependency>

<dependency>

<groupId>com.wordnik</groupId>

<artifactId>swagger-annotations_2.9.1</artifactId>

<version>${swagger-version}</version>

</dependency>

<dependency>

<groupId>com.wordnik</groupId>

<artifactId>swagger-core_2.9.1</artifactId>

<version>${swagger-version}</version>

</dependency>

  <dependency>

      <groupId>com.wordnik</groupId>



      <artifactId>swagger-servlet_2.10</artifactId>

      <version>1.3.5</version>



    </dependency>

    <dependency>

      <groupId>com.wordnik</groupId>



      <artifactId>swagger-jersey-jaxrs_2.10</artifactId>

      <version>1.3.5</version>



    </dependency>

<dependency>

<groupId>org.scala-lang</groupId>

<artifactId>scala-xml</artifactId>

<version>2.11.0-M4</version>

</dependency>

<dependency>

<groupId>com.thetransactioncompany</groupId>

<artifactId>java-property-utils</artifactId>

<version>1.9</version>

</dependency>

<!-- Axis2 -->

<dependency>

<groupId>org.apache.axis2</groupId>

<artifactId>axis2</artifactId>

<version>1.6.2</version>

</dependency>

<dependency>

<groupId>org.apache.xmlbeans</groupId>

<artifactId>xmlbeans</artifactId>

<version>2.5.0</version>

</dependency>

<dependency>

<groupId>org.apache.ws.commons.axiom</groupId>

<artifactId>axiom-api</artifactId>

<version>1.2.13</version>

</dependency>

<dependency>

<groupId>org.apache.ws.commons.axiom</groupId>

<artifactId>axiom-impl</artifactId>

<version>1.2.13</version>

</dependency>

<dependency>

<groupId>wsdl4j</groupId>

<artifactId>wsdl4j</artifactId>

<version>1.6.2</version>

</dependency>

<dependency>

<groupId>org.apache.neethi</groupId>

<artifactId>neethi</artifactId>

<version>3.0.2</version>

</dependency>

<dependency>

<groupId>org.apache.axis2</groupId>

<artifactId>axis2-transport-local</artifactId>

<version>1.6.1</version>

</dependency>

<dependency>

<groupId>org.apache.axis2</groupId>

<artifactId>axis2-transport-http</artifactId>

<version>1.6.1</version>

</dependency>

<dependency>

<groupId>org.apache.ws.commons.schema</groupId>

<artifactId>XmlSchema</artifactId>

<version>1.4.7</version>

</dependency>

<dependency>

<groupId>javax.xml</groupId>

<artifactId>jaxrpc-api</artifactId>

<version>1.1</version>

</dependency>

</dependencies>


<repositories>

<repository>

<id>sonatype-snapshots</id>

<url>https://oss.sonatype.org/content/repositories/snapshots</url>

</repository>

</repositories>


</project>

ash

unread,
May 29, 2015, 5:55:05 PM5/29/15
to swagger-sw...@googlegroups.com
WEB.XML


<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

<servlet>

<servlet-name>Jersey Web Application</servlet-name>

<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>

<init-param>

<param-name>jersey.config.server.provider.packages</param-name>

<param-value>com.test.ash</param-value>

</init-param>

<load-on-startup>1</load-on-startup>

</servlet>

<servlet-mapping>

<servlet-name>Jersey Web Application</servlet-name>

<url-pattern>/api/v0.1/*</url-pattern>

</servlet-mapping>


<resource-ref>

<description>MSP DB Connection</description>

<res-ref-name>jdbc/ash</res-ref-name>

<res-type>javax.sql.DataSource</res-type>

<res-auth>Container</res-auth>

</resource-ref>


<servlet>

<servlet-name>jersey-servlet</servlet-name>

<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>

<init-param>

<param-name>jersey.config.server.provider.packages</param-name>

<param-value>com.test.ash;com.wordnik.swagger.jersey.listing</param-value>

</init-param>

</servlet>


<servlet-mapping>

<servlet-name>jersey-servlet</servlet-name>

<url-pattern>/rest/*</url-pattern>

</servlet-mapping>


<servlet>

<servlet-name>JerseyJaxrsConfig</servlet-name>

<servlet-class>com.wordnik.swagger.jaxrs.config.JerseyJaxrsConfig</servlet-class>

<init-param>

<param-name>api.version</param-name>

<param-value>1.0.0</param-value>

</init-param>

<init-param>

<param-name>swagger.api.basepath</param-name>

<param-value>http://localhost:8080/ash/rest</param-value>

</init-param>

<load-on-startup>2</load-on-startup>

</servlet>


</web-app>

tony tam

unread,
May 29, 2015, 5:56:56 PM5/29/15
to swagger-sw...@googlegroups.com, ayes...@gmail.com
What is the problem you're having?
...

ash

unread,
May 29, 2015, 6:02:09 PM5/29/15
to swagger-sw...@googlegroups.com, ayes...@gmail.com

SEVERE: Servlet [JerseyJaxrsConfig] in web application [/ash-0.1-SNAPSHOT] threw load() exception

java.lang.ClassNotFoundException: com.wordnik.swagger.jaxrs.config.JerseyJaxrsConfig

at org.apache.catalina.loader.WebappClassLoaderBase.loadClass(WebappClassLoaderBase.java:1305)

at org.apache.catalina.loader.WebappClassLoaderBase.loadClass(WebappClassLoaderBase.java:1157)

at org.apache.catalina.core.DefaultInstanceManager.loadClass(DefaultInstanceManager.java:520)

at org.apache.catalina.core.DefaultInstanceManager.loadClassMaybePrivileged(DefaultInstanceManager.java:501)

at org.apache.catalina.core.DefaultInstanceManager.newInstance(DefaultInstanceManager.java:120)

at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1095)

at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:1031)

at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4913)

at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5200)

at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)

at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:725)

at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:701)

at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:717)

at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:940)

at org.apache.catalina.startup.HostConfig$DeployWar.run(HostConfig.java:1738)

at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)

at java.util.concurrent.FutureTask.run(FutureTask.java:266)

at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)

at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)

at java.lang.Thread.run(Thread.java:745)

...

ash

unread,
May 29, 2015, 6:03:56 PM5/29/15
to swagger-sw...@googlegroups.com, ayes...@gmail.com
I mean you solve one issue, another one comes up and a vicious cycle. Uptil today morning i finally got it working, just listing @api stuff. As soon as i added @ApiOperation it started complaining again. Im solving that issue and now totally lost.


On Friday, May 29, 2015 at 5:56:56 PM UTC-4, tony tam wrote:
...

tony tam

unread,
May 29, 2015, 6:28:37 PM5/29/15
to swagger-sw...@googlegroups.com, ayes...@gmail.com
Hi, our general approach to integration has been to provide samples that people can use to try it out, then see the difference when they try to integrate.  Have you tried them before going in "cold"?
...

Ron Ratovsky

unread,
May 29, 2015, 6:29:28 PM5/29/15
to swagger-sw...@googlegroups.com, ayes...@gmail.com
You're using a mixture of swagger dependencies that conflict and are very old, not really sure how you go there.
Just start fresh, follow https://github.com/swagger-api/swagger-core/wiki/Swagger-Core-Jersey-2.X-Project-Setup and you should be done in no time.

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

ash

unread,
May 29, 2015, 6:45:24 PM5/29/15
to swagger-sw...@googlegroups.com
i have been doing that, many times. Due to errors i keep on adding dependencies. I will try again and let you know.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

ash

unread,
May 29, 2015, 7:17:58 PM5/29/15
to swagger-sw...@googlegroups.com, ayes...@gmail.com


WEB.XML

<?xml version="1.0" encoding="UTF-8"?>

<!-- This web.xml file is not required when using Servlet 3.0 container, 

see implementation details http://jersey.java.net/nonav/documentation/latest/jax-rs.html -->

<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

<servlet>

<servlet-name>Jersey Web Application</servlet-name>

<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>

<init-param>

<param-name>jersey.config.server.provider.packages</param-name>

<param-value>com.test.ash</param-value>

</init-param>

<load-on-startup>1</load-on-startup>

</servlet>

<servlet-mapping>

<servlet-name>Jersey Web Application</servlet-name>

<url-pattern>/api/v0.1/*</url-pattern>

</servlet-mapping>


<resource-ref>

<description>DB Connection</description>

<res-ref-name>jdbc/ash</res-ref-name>

<res-type>javax.sql.DataSource</res-type>

<res-auth>Container</res-auth>

</resource-ref>


<servlet>

<servlet-name>jersey-servlet</servlet-name>

<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>

<init-param>

<param-name>jersey.config.server.provider.packages</param-name>

<param-value>com.test.ash;com.wordnik.swagger.jaxrs.json</param-value>

</init-param>

<init-param>

            <param-name>jersey.config.server.provider.classnames</param-name>

            <param-value>

                com.wordnik.swagger.jersey.listing.ApiListingResourceJSON,

                com.wordnik.swagger.jersey.listing.JerseyApiDeclarationProvider,

                com.wordnik.swagger.jersey.listing.JerseyResourceListingProvider

            </param-value>

        </init-param>

</servlet>


<servlet-mapping>

<servlet-name>jersey-servlet</servlet-name>

<url-pattern>/rest/*</url-pattern>

</servlet-mapping>


<servlet>

        <servlet-name>Jersey2Config</servlet-name>

        <servlet-class>com.wordnik.swagger.jersey.config.JerseyJaxrsConfig</servlet-class>

        <init-param>

            <param-name>api.version</param-name>

            <param-value>1.0.0</param-value>

        </init-param>

        <init-param>

            <param-name>swagger.api.basepath</param-name>

            <param-value>http://localhost:8080/ash/rest</param-value>

        </init-param>

<!--         <load-on-startup>2</load-on-startup> -->

    </servlet>

    

    <servlet>

        <servlet-name>SwaggerBootstrap</servlet-name>

        <servlet-class>com.test.ash.Bootstrap</servlet-class>

        <load-on-startup>2</load-on-startup>

    </servlet>


</web-app>







POM.XML

</plugins>




</build>

<groupId>com.wordnik</groupId>

<artifactId>swagger-jersey2-jaxrs_2.10</artifactId>

<version>1.3.12</version>

</dependency>


<dependency>

<groupId>com.wordnik</groupId>

<artifactId>swagger-jersey2-jaxrs_2.10</artifactId>

<version>1.3.2</version>

<exclusions>

<exclusion>

<groupId>javax.ws.rs</groupId>

<artifactId>jsr311-api</artifactId>

</exclusion>

</exclusions>

</dependency>

</dependencies>

</project>





SERVICES PAGE


@Path("services")

@Api(value = "/services", description = "services!")

public class Services {

......





ERROR

ash

unread,
May 29, 2015, 7:21:22 PM5/29/15
to swagger-sw...@googlegroups.com
also 

BOOTSTRAP.JAVA

package com.test.ash;

import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;

import com.wordnik.swagger.jaxrs.config.BeanConfig;

public class Bootstrap extends HttpServlet {
    @Override
    public void init(ServletConfig config) throws ServletException {
        super.init(config);

        BeanConfig beanConfig = new BeanConfig();
        beanConfig.setVersion("1.0.2");
        beanConfig.setBasePath("http://localhost:8080/ash/rest");
        beanConfig.setResourcePackage("io.swagger.resources");
        beanConfig.setScan(true);
    }
}





On Friday, May 29, 2015 at 5:51:08 PM UTC-4, ash wrote:
...

Ron Ratovsky

unread,
May 29, 2015, 7:27:23 PM5/29/15
to swagger-sw...@googlegroups.com

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

ash

unread,
May 29, 2015, 7:30:14 PM5/29/15
to swagger-sw...@googlegroups.com
Not a problem, i know this nightmare is not going to end soon. I just hope it finally does.

i will try the link now and post the issues again
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

tony tam

unread,
May 29, 2015, 7:34:50 PM5/29/15
to swagger-sw...@googlegroups.com, ayes...@gmail.com
Hi, I'm sorry you're having trouble.  Like we've said, you have choices on how to get started.

1) Follow the wiki as Ron pointed out
2) Look at the setup in an example project
3) Use http://editor.swagger.io to create an api and download the entire server source code.

If those aren't straight forward, please post back, but that should be more than enough to get started.
...

ash

unread,
May 29, 2015, 7:47:05 PM5/29/15
to swagger-sw...@googlegroups.com, ayes...@gmail.com
I have spent days already, i added and deleted swagger.io. I chose this product thinking its easy. But i hope with your guidance it works out.
...

ash

unread,
May 29, 2015, 7:58:58 PM5/29/15
to swagger-sw...@googlegroups.com
same error!!

SEVERE: Servlet [JerseyJaxrsConfig] in web application [/ash-0.1-SNAPSHOT] threw load() exception

java.lang.ClassNotFoundException: com.wordnik.swagger.jaxrs.config.JerseyJaxrsConfig

at org.apache.catalina.loader.WebappClassLoaderBase.loadClass(WebappClassLoaderBase.java:1305)

at org.apache.catalina.loader.WebappClassLoaderBase.loadClass(WebappClassLoaderBase.java:1157)

at org.apache.catalina.core.DefaultInstanceManager.loadClass(DefaultInstanceManager.java:520)

at org.apache.catalina.core.DefaultInstanceManager.loadClassMaybePrivileged(DefaultInstanceManager.java:501)

at org.apache.catalina.core.DefaultInstanceManager.newInstance(DefaultInstanceManager.java:120)

at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1095)

at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:1031)

at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4913)

at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5200)

at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)

at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:725)

at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:701)

at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:717)

at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:940)

at org.apache.catalina.startup.HostConfig$DeployWar.run(HostConfig.java:1738)

at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)

at java.util.concurrent.FutureTask.run(FutureTask.java:266)

at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)

at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)

at java.lang.Thread.run(Thread.java:745)



...

Ron Ratovsky

unread,
May 29, 2015, 8:05:56 PM5/29/15
to swagger-sw...@googlegroups.com
Then something's off with your dependencies.

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

ash

unread,
May 30, 2015, 1:33:11 AM5/30/15
to swagger-sw...@googlegroups.com
this one isn't working at all. What should i do next?

ERROR

May 30, 2015 1:24:01 AM org.apache.catalina.core.StandardContext loadOnStartup

SEVERE: Servlet [JerseyJaxrsConfig] in web application [/ash-0.1-SNAPSHOT] threw load() exception

java.lang.ClassNotFoundException: com.wordnik.swagger.jaxrs.config.JerseyJaxrsConfig

at org.apache.catalina.loader.WebappClassLoaderBase.loadClass(WebappClassLoaderBase.java:1305)

at org.apache.catalina.loader.WebappClassLoaderBase.loadClass(WebappClassLoaderBase.java:1157)

at org.apache.catalina.core.DefaultInstanceManager.loadClass(DefaultInstanceManager.java:520)

at org.apache.catalina.core.DefaultInstanceManager.loadClassMaybePrivileged(DefaultInstanceManager.java:501)

at org.apache.catalina.core.DefaultInstanceManager.newInstance(DefaultInstanceManager.java:120)

at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1095)

at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:1031)

at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4913)

at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5200)

at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)

at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:725)

at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:701)

at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:717)

at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:940)

at org.apache.catalina.startup.HostConfig$DeployWar.run(HostConfig.java:1738)

at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)

at java.util.concurrent.FutureTask.run(FutureTask.java:266)

at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)

at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)

at java.lang.Thread.run(Thread.java:745)



WEB.XML


<?xml version="1.0" encoding="UTF-8"?>

<!-- This web.xml file is not required when using Servlet 3.0 container, 

see implementation details http://jersey.java.net/nonav/documentation/latest/jax-rs.html -->

<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"

<servlet>

<servlet-name>Jersey Web Application</servlet-name>

<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>

<init-param>

            <param-name>jersey.config.server.provider.classnames</param-name>

            <param-value>

                com.wordnik.swagger.jaxrs.listing.ApiListingResource,

                com.wordnik.swagger.jaxrs.listing.SwaggerSerializers,

                com.test.ash.Services

            </param-value>

        </init-param>

    </servlet>


<servlet-mapping>

<servlet-name>Jersey Web Application</servlet-name>

<url-pattern>/api/v0.1/*</url-pattern>

</servlet-mapping>


<resource-ref>

<description>DB Connection</description>

<res-ref-name>jdbc/ash</res-ref-name>

<res-type>javax.sql.DataSource</res-type>

<res-auth>Container</res-auth>

  </resource-ref>


    <servlet>

        <servlet-name>Jersey2Config</servlet-name>

        <servlet-class>com.wordnik.swagger.jersey.config.JerseyJaxrsConfig</servlet-class>

        <init-param>

            <param-name>api.version</param-name>

            <param-value>1.0.0</param-value>

        </init-param>

        <init-param>

            <param-name>swagger.api.basepath</param-name>

            <param-value>http://localhost:8080/ash/rest</param-value>

        </init-param>

        <load-on-startup>2</load-on-startup>

    </servlet>


<servlet>

        <servlet-name>SwaggerBootstrap</servlet-name>

        <servlet-class>com.test.ash.Bootstrap</servlet-class>

        <load-on-startup>3</load-on-startup>

    </servlet>

   

</web-app>




POM.XML

</plugins>


</build>

  <groupId>com.wordnik</groupId>

  <artifactId>swagger-jersey2-jaxrs</artifactId>

  <version>1.5.1-M1</version>

</dependency>


</dependencies>

</project>



BOOTSTRAP.JAVA


package com.test.ash;


import javax.servlet.ServletConfig;

import javax.servlet.ServletException;

import javax.servlet.http.HttpServlet;


import com.wordnik.swagger.jaxrs.config.BeanConfig;


public class Bootstrap extends HttpServlet {

    @Override

    public void init(ServletConfig config) throws ServletException {

        super.init(config);


        BeanConfig beanConfig = new BeanConfig();

        beanConfig.setVersion("1.0.2");

        beanConfig.setBasePath("http://localhost:8080/ash/rest");

        beanConfig.setResourcePackage("io.swagger.resources");

        beanConfig.setScan(true);

    }

}




SERVICES 

Ron Ratovsky

unread,
May 30, 2015, 11:39:00 AM5/30/15
to swagger-sw...@googlegroups.com
If you include the dependency and still get the error, it can be one of two things - either something is wrong with your packaging (shading or something else) or your application server has a different version of the dependency in a shared library that messes it up). The class it cannot find is part of the dependency you include.

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

ash

unread,
May 31, 2015, 12:53:53 AM5/31/15
to swagger-sw...@googlegroups.com
ok. I figured out getting rid of errors. Now the problem is, i view a blank page for mapped resources. No errors at the console even using chrome.

Any idea how to fix this?
...

ash

unread,
May 31, 2015, 1:19:17 AM5/31/15
to swagger-sw...@googlegroups.com

CONSOLE

01:09:25.584 [localhost-startStop-1] DEBUG org.reflections.Reflections - going to scan these urls:

file:/Users/owner1/apache-tomcat-8.0.21/wtpwebapps/ash/WEB-INF/classes/

01:09:25.684 [localhost-startStop-1] INFO  org.reflections.Reflections - Reflections took 95 ms to scan 1 urls, producing 12 keys and 31 values 



URLS TRIED


http://localhost:8080/api-docs/

http://localhost:8080/ash/api-docs/



WEB.XML


<?xml version="1.0" encoding="UTF-8"?>

<!-- This web.xml file is not required when using Servlet 3.0 container, 

see implementation details http://jersey.java.net/nonav/documentation/latest/jax-rs.html -->

<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

<servlet>

<servlet-name>Jersey Web Application</servlet-name>

<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>

<init-param>

        <param-name>jersey.config.server.provider.packages</param-name>

        <param-value>

            com.wordnik.swagger.jaxrs.listing,

            com.test.ash

        </param-value>

      </init-param>

      <load-on-startup>1</load-on-startup>


    </servlet>


<servlet-mapping>

<servlet-name>Jersey Web Application</servlet-name>

<url-pattern>/*</url-pattern>

</servlet-mapping>


<resource-ref>

<description>ash DB Connection</description>

<res-ref-name>jdbc/ash</res-ref-name>

<res-type>javax.sql.DataSource</res-type>

<res-auth>Container</res-auth>

  </resource-ref>


    <servlet>

        <servlet-name>Jersey2Config</servlet-name>

        <servlet-class>com.wordnik.swagger.jersey.config.JerseyJaxrsConfig</servlet-class>

        <init-param>

            <param-name>api.version</param-name>

            <param-value>1.0.0</param-value>

        </init-param>

        <init-param>

            <param-name>swagger.api.basepath</param-name>

            <param-value>http://localhost:8080/ash/rest</param-value>

        </init-param>

        <load-on-startup>2</load-on-startup>

    </servlet>


<servlet>

        <servlet-name>SwaggerBootstrap</servlet-name>

        <servlet-class>com.test.ash.Bootstrap</servlet-class>

        <load-on-startup>3</load-on-startup>

    </servlet>

   


</web-app>



BOOTSTRAP.JAVA


package com.test.ash;


import javax.servlet.ServletConfig;

import javax.servlet.ServletException;

import javax.servlet.http.HttpServlet;


import com.wordnik.swagger.jaxrs.config.BeanConfig;


public class Bootstrap extends HttpServlet {



@Override

    public void init(ServletConfig config) throws ServletException {

        super.init(config);


        BeanConfig beanConfig = new BeanConfig();

        beanConfig.setVersion("1.0.2");

        //beanConfig.setSchemes(new String[]{"http"});

        //beanConfig.setHost("localhost:80");

        beanConfig.setBasePath("http://localhost:8080/ash/rest");

        beanConfig.setResourcePackage("com.test.ash”);

        beanConfig.setScan(true);

    }

}


Ron Ratovsky

unread,
May 31, 2015, 10:41:23 AM5/31/15
to swagger-sw...@googlegroups.com
Based on your configuration it should be available at http://localhost:8080/ash/swagger.json.

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

ash

unread,
May 31, 2015, 11:15:33 AM5/31/15
to swagger-sw...@googlegroups.com
yes that is, and what about resources like

@Path("services")

@Api(value = "/services", description = "services!")

public class SubscriberServices {


where would that be?


I tried


http://localhost:8080/ash/swagger.json/services


as well as


http://localhost:8080/ash/services/swagger.json

To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

Ron Ratovsky

unread,
May 31, 2015, 11:16:33 AM5/31/15
to swagger-sw...@googlegroups.com
That's your API, it has nothing to do with swagger.

To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

ash

unread,
May 31, 2015, 11:18:10 AM5/31/15
to swagger-sw...@googlegroups.com
also i don't see any resources listed in the base path. i have defined 2. Any guidance with that?


On Sunday, May 31, 2015 at 10:41:23 AM UTC-4, Ron wrote:
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

Ron Ratovsky

unread,
May 31, 2015, 11:18:56 AM5/31/15
to swagger-sw...@googlegroups.com
I don't follow the question. What are you trying to do, what do you see, and what do you expect seeing?

To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

ash

unread,
May 31, 2015, 1:59:24 PM5/31/15
to swagger-sw...@googlegroups.com
When I go to

http://localhost:8080/ash/swagger.json

Shouldn't all the URi's like /services defined using @api appear as alist?

I want to build a documentation with it. I want to use @apioperation and @apiresources etc

ash

unread,
May 31, 2015, 2:00:36 PM5/31/15
to swagger-sw...@googlegroups.com
Also use swagger UI to view the documentation

ash

unread,
May 31, 2015, 2:02:53 PM5/31/15
to swagger-sw...@googlegroups.com
If it doesn't appear in the base path that is still ok.

What would the url be for /services? I mentioned the ones I tried

ash

unread,
Jun 1, 2015, 10:29:55 AM6/1/15
to swagger-sw...@googlegroups.com
i had to comment out 

beanConfig.setSchemes(new String[]{"http"});
        beanConfig.setHost("localhost:8080");


because they are undefined for BeanConfig. Could that be the reason?

Please guide.

thanks
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

Ron Ratovsky

unread,
Jun 1, 2015, 10:33:52 AM6/1/15
to swagger-sw...@googlegroups.com
Using just @Api will not produce anything without having @ApiOperation on the operations as well.

setHost/setSchemes are defined for BeanConfig - https://github.com/swagger-api/swagger-core/blob/master/modules/swagger-jaxrs/src/main/java/com/wordnik/swagger/jaxrs/config/BeanConfig.java#L117

Again, if you don't have that, you have a version conflict somewhere.

To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

ash

unread,
Jun 1, 2015, 10:47:44 AM6/1/15
to swagger-sw...@googlegroups.com
i see something now. I had to remove operations because of all decency issues i was having earlier.

Is there a link to follow for swagger UI? or just the copy pasting dist items in web-inf folder is sufficient?

thanks
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

Ron Ratovsky

unread,
Jun 1, 2015, 10:48:27 AM6/1/15
to swagger-sw...@googlegroups.com
Copy-pasting would suffice.

To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

ash

unread,
Jun 1, 2015, 12:14:35 PM6/1/15
to swagger-sw...@googlegroups.com
Ron,

using browser i can see Swagger version, etc and base path and other paths.

But with Swagger UI, i can only see version information

am i missing something?
Copy-pasting would suffice.

To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

ash

unread,
Jun 1, 2015, 12:20:35 PM6/1/15
to swagger-sw...@googlegroups.com
swagger-ui.js has multiple errors. That could be a reason. i have having the same issue with this file earlier. I copy pasted all items from diet folder to the WEB-INF folder of my project.


On Monday, June 1, 2015 at 10:48:27 AM UTC-4, Ron wrote:
Copy-pasting would suffice.

To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

Ron Ratovsky

unread,
Jun 1, 2015, 1:12:23 PM6/1/15
to swagger-sw...@googlegroups.com
I'd need the errors for further assistance. The swagger.json file would help too.

Copy-pasting would suffice.

To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

ash

unread,
Jun 1, 2015, 1:35:38 PM6/1/15
to swagger-sw...@googlegroups.com
using the swagger UI i only see:

base url: /ash , api version: 0.1 ]



using browser:



{"swagger":"2.0","info":{"version":"0.1","title":""},"host":"localhost:8080","basePath":"/ash”,”schemes":["http"],"paths":{"services":{}},"definitions":{"Service":{"properties":{"id":{"type":"integer","format":"int64"},"firstName":{"type":"string"},"lastName":{"type":"string"},"address1":{"type":"string"},"address2":{"type":"string"},"city":{"type":"string"},"state":{"type":"string"},"zip":{"type":"string"},"latitude":{"type":"string"},"longitude":{"type":"string"}},"xml":{"name":"##default"}},"ServiceList":{"properties":{"serviceList":{"type":"array","items":{"$ref":"#/definitions/Service"}}},"xml":{"name":"##default"}}}}


I took out the bootstrap code, i don't need it as i am using servlet in web.xml



Copy-pasting would suffice.

To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

Ron Ratovsky

unread,
Jun 1, 2015, 1:42:08 PM6/1/15
to swagger-sw...@googlegroups.com
Have you added the SwaggerSerializers provider?

Copy-pasting would suffice.

To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

ash

unread,
Jun 1, 2015, 1:42:29 PM6/1/15
to swagger-sw...@googlegroups.com
ERRORS in swagger-ui.js

  1. Handlebars.registerHelper ..... 

var defaultValue = isArray && Array.isArray(param.default) ? param.default.join('\n') : param.default;

ERRORSyntax error on token "default", Identifier expected
  1. (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.SwaggerClient = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){


ERRORThe left-hand side of an assignment must be a variable




  1.  for (name in spec.paths) {  ....

 if (parameter.in === 'body' && parameter.schema) {


ERRORSyntax error on token "in", Identifier expected











 

On Monday, June 1, 2015 at 1:12:23 PM UTC-4, Ron wrote:
Copy-pasting would suffice.

To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

ash

unread,
Jun 1, 2015, 1:49:59 PM6/1/15
to swagger-sw...@googlegroups.com
no. I only cloned swagger-ui and pasted its diet contents in WEB-INF.
Copy-pasting would suffice.

To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

Ron Ratovsky

unread,
Jun 1, 2015, 1:51:51 PM6/1/15
to swagger-sw...@googlegroups.com
That's before the swagger-ui integration. That's part of the swagger-core integration. It's documented in the guides.

Copy-pasting would suffice.

To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

ash

unread,
Jun 1, 2015, 2:00:39 PM6/1/15
to swagger-sw...@googlegroups.com
what sequence do i have to follow? i just want the UI to work and try out.

There are many items listed which don't seem relevant.

swagger-core

maybe needed i guess
Copy-pasting would suffice.

To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

Ron Ratovsky

unread,
Jun 1, 2015, 2:05:10 PM6/1/15
to swagger-sw...@googlegroups.com
You were directed to the guide several times in this thread. Beyond that, I don't know how else I can help you.

Copy-pasting would suffice.

To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

ash

unread,
Jun 1, 2015, 2:24:05 PM6/1/15
to swagger-sw...@googlegroups.com
When you say guide, which one? There are so many guides, I'm trying my best to follow the ones which seem relevant. i am not familiar with the product.

After reading some, i found out:

In 1.5, you need to expose two providers:

  • com.wordnik.swagger.jaxrs.listing.ApiListingResource - this provides the /swagger.json and /swagger.yaml endpoints.
  • com.wordnik.swagger.jaxrs.listing.SwaggerSerializers - this provides a custom MessageBodyWriter for the Swagger object, customizing the serializtion to JSON and YAML formats. 

Alternatively, if you use package scanning for providers, you can just specify com.wordnik.swagger.jaxrs.listing.

I already added com.wordnik.swagger.jaxrs.listing. and my package scanning following 

Swagger Core Jersey 2.X Project Setup 1.5.



I don't need SwaggerSerializers.

Copy-pasting would suffice.

To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------
...

ash

unread,
Jun 1, 2015, 2:27:57 PM6/1/15
to swagger-sw...@googlegroups.com
more:

You can use the swagger-ui code AS-IS! No need to build or recompile--just clone this repo and use the pre-built files in the dist folder. If you like swagger-ui as-is, stop here.


what am i missing then?


On Monday, June 1, 2015 at 2:05:10 PM UTC-4, Ron wrote:
Copy-pasting would suffice.

To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------
...

Ron Ratovsky

unread,
Jun 1, 2015, 2:50:51 PM6/1/15
to swagger-sw...@googlegroups.com
Okay, we're going back and forth on this and there seems to be some confusion.

It would be best if you joined our IRC channel and we can discuss this online. http://swagger.io/irc

more:

Copy-pasting would suffice.

To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------
...

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.

ash

unread,
Jun 1, 2015, 3:27:19 PM6/1/15
to swagger-sw...@googlegroups.com
i did
more:

Copy-pasting would suffice.

To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggersocket+unsub...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://s
...

Ron Ratovsky

unread,
Jun 1, 2015, 3:28:18 PM6/1/15
to swagger-sw...@googlegroups.com
But you had some connection problems and got disconnected. Please try again.

more:

Copy-pasting would suffice.

To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://swagger.io
https://twitter.com/SwaggerApi
-----------------------------------------

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.



--
-----------------------------------------
http://s
...

--
You received this message because you are subscribed to the Google Groups "Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email to swagger-swaggers...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.
Reply all
Reply to author
Forward
0 new messages