Oracle web service on apache tomcat 5.5.X

Hello everyone,
we developed web service using oracle jdeveloper 10.1.3.2 and successfully deployed it on OC4J. It works fine.
we also tried to deploy that web service on apache tomcat 5.5.17, but faced with error:
java.lang.reflect.InvocationTargetException
at sun.reflect.GeneratedMethodAccessor21.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.apache.tomcat.util.IntrospectionUtils.callMethodN(IntrospectionUtils.java:929)
at org.apache.tomcat.util.digester.CallMethodRule.end(CallMethodRule.java:578)
at org.apache.tomcat.util.digester.Rule.end(Rule.java:228)
at org.apache.tomcat.util.digester.Digester.endElement(Digester.java:1057)
at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1318)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:294)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:432)
Caused by: java.lang.IllegalArgumentException: Invalid <url-pattern> PointSoap12
HttpPort in servlet mapping
at org.apache.catalina.core.StandardContext.addServletMapping(StandardContext.java:2292)
at org.apache.catalina.core.StandardContext.addServletMapping(StandardContext.java:2268)
... 39 more
16.07.2007 8:55:46 org.apache.catalina.startup.ContextConfig applicationWebConfig
SEVERE: Parse error in application web.xml file at jndi:/localhost/WebServices/WEB-INF/web.xml
java.lang.IllegalArgumentException: Invalid <url-pattern> PointSoap12HttpPort in servlet mapping
at org.apache.tomcat.util.digester.Digester.createSAXException(Digester.java:2725)
at org.apache.tomcat.util.digester.Digester.createSAXException(Digester.java:2751)
at org.apache.tomcat.util.digester.Digester.endElement(Digester.java:1060)
at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1318)
at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:336)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:294)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:432)
did anyone solve this problem or is there any workaround for this?
thanks for your help in advance.
Renat

Please modify the url-pattern in web.xml.
java.lang.IllegalArgumentException: Invalid <url-pattern>
URL-patterns must be one of the following:
- start with a '/' and end with a '/*', use this one for path patterns
- start with a '*.' and end with a character, use this for extension mapping
- some sequence of characters starting with '/' and not ending in '*', use this for exact matches.

Similar Messages

  • Deploy web service on apache tomcat

    Hi,
    I have J2EE application and now I need to expose some of the methods from this application via web service. I am using apache tomcat 6.20 and I am having lots of issues deploying my web service to apache tomcat.
    It seem to work fine on gloss fish as I was following the tutorial on netbeans for simple web services.
    Any ideas on best practice on building web service on apache tomcat. I've seen many people are having issues with this combination tomcat and jaxws but didn't find anything helpful.
    Thanks in advance.

    Here is the error I am getting when trying to pass strongly typed objects:
    javax.xml.ws.WebServiceException: javax.xml.bind.MarshalException
    - with linked exception:
    [javax.xml.bind.JAXBException: class java.util.LinkedList nor any of its super class is known to this context.]
            at com.sun.xml.ws.message.jaxb.JAXBMessage.writePayloadTo(JAXBMessage.java:329)
            at com.sun.xml.ws.message.AbstractMessageImpl.writeTo(AbstractMessageImpl.java:142)
            at com.sun.xml.ws.encoding.StreamSOAPCodec.encode(StreamSOAPCodec.java:109)
            at com.sun.xml.ws.encoding.SOAPBindingCodec.encode(SOAPBindingCodec.java:258)
            at com.sun.xml.ws.transport.http.HttpAdapter.encodePacket(HttpAdapter.java:338)
            at com.sun.xml.ws.transport.http.HttpAdapter.access$100(HttpAdapter.java:93)
            at com.sun.xml.ws.transport.http.HttpAdapter$HttpToolkit.handle(HttpAdapter.java:480)
            at com.sun.xml.ws.transport.http.HttpAdapter.handle(HttpAdapter.java:244)
            at com.sun.xml.ws.transport.http.servlet.ServletAdapter.handle(ServletAdapter.java:135)
            at com.sun.xml.ws.transport.http.servlet.WSServletDelegate.doGet(WSServletDelegate.java:129)
            at com.sun.xml.ws.transport.http.servlet.WSServletDelegate.doPost(WSServletDelegate.java:160)
            at com.sun.xml.ws.transport.http.servlet.WSServlet.doPost(WSServlet.java:75)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
            at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
            at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
            at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
            at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
            at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
            at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
            at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
            at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
            at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
            at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
            at java.lang.Thread.run(Thread.java:619)
    Caused by: javax.xml.bind.MarshalException
    - with linked exception:
    [javax.xml.bind.JAXBException: class java.util.LinkedList nor any of its super class is known to this context.]
            at com.sun.xml.bind.v2.runtime.MarshallerImpl.write(MarshallerImpl.java:279)
            at com.sun.xml.bind.v2.runtime.BridgeImpl.marshal(BridgeImpl.java:100)
            at com.sun.xml.bind.api.Bridge.marshal(Bridge.java:141)
            at com.sun.xml.ws.message.jaxb.JAXBMessage.writePayloadTo(JAXBMessage.java:321)
            ... 25 more
    Caused by: javax.xml.bind.JAXBException: class java.util.LinkedList nor any of its super class is known to this context.
            at com.sun.xml.bind.v2.runtime.XMLSerializer.reportError(XMLSerializer.java:242)
            at com.sun.xml.bind.v2.runtime.XMLSerializer.reportError(XMLSerializer.java:257)
            at com.sun.xml.bind.v2.runtime.XMLSerializer.childAsXsiType(XMLSerializer.java:649)
            at com.sun.xml.bind.v2.runtime.property.ArrayElementNodeProperty.serializeItem(ArrayElementNodeProperty.java:65)
            at com.sun.xml.bind.v2.runtime.property.ArrayElementProperty.serializeListBody(ArrayElementProperty.java:168)
            at com.sun.xml.bind.v2.runtime.property.ArrayERProperty.serializeBody(ArrayERProperty.java:152)
            at com.sun.xml.bind.v2.runtime.ClassBeanInfoImpl.serializeBody(ClassBeanInfoImpl.java:322)
            at com.sun.xml.bind.v2.runtime.XMLSerializer.childAsXsiType(XMLSerializer.java:681)
            at com.sun.xml.bind.v2.runtime.property.SingleElementNodeProperty.serializeBody(SingleElementNodeProperty.java:150)
            at com.sun.xml.bind.v2.runtime.ClassBeanInfoImpl.serializeBody(ClassBeanInfoImpl.java:322)
            at com.sun.xml.bind.v2.runtime.XMLSerializer.childAsXsiType(XMLSerializer.java:681)
            at com.sun.xml.bind.v2.runtime.MarshallerImpl.write(MarshallerImpl.java:274)
            ... 28 more
    Caused by: javax.xml.bind.JAXBException: class java.util.LinkedList nor any of its super class is known to this context.
            at com.sun.xml.bind.v2.runtime.JAXBContextImpl.getBeanInfo(JAXBContextImpl.java:566)
            at com.sun.xml.bind.v2.runtime.XMLSerializer.childAsXsiType(XMLSerializer.java:644)
            ... 37 more

  • Web service - eclipse - apache/tomcat - soap - java

    Hi!
    I want to develop a web service. I use eclipse as java ide, and apache as web server. I could not get the information how to develop a web service with my ide and web server. I want to use soap too.
    Anyone will you please help/instruct me to develop a web service.
    Thanks for all...

    bump
    Can any one help me here?
    I have an application that uses SOAP and JNLP. Clients with Java 1.4.2 everything works fine but under Java1.5 the SOAP calls take forever to complete (each is about 4 seconds and there are often a lot of SOAP calls)
    My webserver is Tomcat 5.5.12
    I'm not sure of my soap version, but i believe it is 2.3 (.1? how can i find out)
    I have Java 1.5 and 1.4 installed and Tomcat uses Java 1.5 - I compile my classes for Java 1.4 but I really want Java 5 to work.
    My soap services are deployed and correctly displayed with the SOAP admin page.
    What kind of java 5 soap incomptability might i have found here? can anyone help me.
    B.t.w. from my local computer this problem doesn't happen - Java 1.5 works correctly - it is only when it is on a different computer (even on the intranet) that i have problems.
    Any ideas
    Thanks
    Martin

  • Oracle Web Services Manager, Coresv

    Coresv, Web Services Manager May 21, 2005 9:04 PM
    Reply
    I have downloaded Web Services Manager (part of the Application Server Downloads), also called as coresv.
    I have done the installation as per the scripts but need some help with some issues that I am getting.
    Basically when I goto the http://localhost:3115/ccore page, the login works fine but after that all I see is
    two empty frames:
    1. Error
    The following exception occured when processing the JSP:
    Provider org.apache.xalan.processor.TransformerFactoryImpl not found
    Use your browsers "Back" button if you would like to try again.
    Contact Oracle Web Services Manager Administrator
    2. Error
    The following exception occured when processing the JSP:
    getActiveComponents failed
    Use your browsers "Back" button if you would like to try again.
    Contact Oracle Web Services Manager Administrator
    Can you guide me where should I post this message?
    Thanks
    Best Regards
    Hitesh

    Follow-up on this topic
    1. Still not able to run the default Tomcat Instance.
    2. However, was able to get to the console of Web Services Manager when deployed to a Weblogic 8.1 SP3 instance.
    But after configuring a gateway, registering a service and comitting the policies etc. as described by the book, when I try to access the service using the URL
    http://localhost:7001/gateway/services/SID0003006?wsdl
    http://localhost:7001/gateway is where the gateway.war is deployed.
    I get
    Oracle Web Services Manager Gateway : Cannot find WSDL for service "SID0003006"
    I can't execute the service either..
    Thanks
    Hitesh

  • Oracle Web Services Manager, Coresv problems

    Coresv, Web Services Manager May 21, 2005 9:04 PM
    Reply
    I have downloaded Web Services Manager (part of the Application Server Downloads), also called as coresv.
    I have done the installation as per the scripts but need some help with some issues that I am getting.
    Basically when I goto the http://localhost:3115/ccore page, the login works fine but after that all I see is
    two empty frames:
    1. Error
    The following exception occured when processing the JSP:
    Provider org.apache.xalan.processor.TransformerFactoryImpl not found
    Use your browsers "Back" button if you would like to try again.
    Contact Oracle Web Services Manager Administrator
    2. Error
    The following exception occured when processing the JSP:
    getActiveComponents failed
    Use your browsers "Back" button if you would like to try again.
    Contact Oracle Web Services Manager Administrator
    Can you guide me where should I post this message?
    Thanks
    Best Regards
    Hitesh

    Follow-up on this topic
    1. Still not able to run the default Tomcat Instance.
    2. However, was able to get to the console of Web Services Manager when deployed to a Weblogic 8.1 SP3 instance.
    But after configuring a gateway, registering a service and comitting the policies etc. as described by the book, when I try to access the service using the URL
    http://localhost:7001/gateway/services/SID0003006?wsdl
    http://localhost:7001/gateway is where the gateway.war is deployed.
    I get
    Oracle Web Services Manager Gateway : Cannot find WSDL for service "SID0003006"
    I can't execute the service either..
    Thanks
    Hitesh

  • Failed to Install the "Oracle Web Services Manager Configuration Assistant"

    The installation of "Oracle Web Services Manager Configuration Assistant" was failed when I installed the "Oracle SOA Suite 10.1.3.1.0" ,and the failure information about the installation in the log show as follows, I need your help,thanks a lot!
    start-olite:
    Starting OLite in background ...
    Running:D:\product\10.1.3.1\OracleAS_1\integration\esb\sql\other\wfeventc.sql
    Exception in thread "main" oracle.tip.esb.install.exception.InstallationDBException: Failed to execute sql file"D:\product\10.1.3.1\OracleAS_1\integration\esb\sql\other\wfeventc.sql"
         at oracle.tip.esb.install.db.RunSQLScript.runScript(Unknown Source)
         at oracle.tip.esb.install.db.RunSQLScript.runScriptListInternal(Unknown Source)
         at oracle.tip.esb.install.db.RunSQLScript.runScriptList(Unknown Source)
         at oracle.tip.esb.install.db.NonOracleDB.runScripts(Unknown Source)
         at oracle.tip.esb.install.db.OLite.install(Unknown Source)
         at oracle.tip.esb.install.db.InstallerMain.main(Unknown Source)
    Caused by: java.sql.SQLException: [POL-3023] ????????
         at oracle.lite.poljdbc.LiteThinJDBCConnection.thinSQLError(Unknown Source)
         at oracle.lite.poljdbc.LiteThinJDBCConnection.thinDriverConnect(Unknown Source)
         at oracle.lite.poljdbc.LiteThinJDBCConnection.connect(Unknown Source)
         at oracle.lite.poljdbc.LiteThinJDBCFactory.createConnection(Unknown Source)
         at oracle.lite.poljdbc.POLJDBCConnection.<init>(Unknown Source)
         at oracle.lite.poljdbc.OracleConnection.<init>(Unknown Source)
         at oracle.lite.poljdbc.POLJDBCDriver.connect(Unknown Source)
         at oracle.tip.esb.install.db.DriverManagerDataSource.getConnection(Unknown Source)
         ... 6 more
    Java Result: 1
    Importing Default System ...
    ${env.PCHOME}
    stop-olite:
    Stopping background OLite process ...
    CA::DEBUG:******:Finished OLite Install ...
    Finished Olite configuration ...
    BUILD SUCCESSFUL
    Total time: 12 seconds
    Exit: 0
    TASK: oracle.tip.esb.install.tasks.ConfigureOC4J
    Configuring OC4J ...
    id value is 2
    id value is IASPT
    process-type value is 1
    id value is 3
    id value is IASPT
    id value is 3
    id value is ASG
    process-type value is 1
    id value is 2
    id value is ASG
    id value is 1
    id value is default_group
    process-type value is 1
    id value is 3
    id value is home
    process-type value is 1
    process-type value is 2
    process-type value is 1
    final map size value is 2
    id value is -Xrs -server -XX:MaxPermSize=128M -ms512M -mx1024M -XX:AppendRatio=3 -Djava.security.policy=$ORACLE_HOME/j2ee/home/config/java2.policy -Djava.awt.headless=true -Dhttp.webdir.enable=false
    Jun 22, 2010 2:39:09 PM oracle.tip.esb.install.tasks.ConfigureOC4J getOpmnRequestPort
    INFO: Port value is 6003
    D:\product\10.1.3.1\OracleAS_1\jdk\bin\java -Dant.home=D:\product\10.1.3.1\OracleAS_1\ant -classpath D:\product\10.1.3.1\OracleAS_1\ant\lib\ant.jar;D:\product\10.1.3.1\OracleAS_1\ant\lib\ant-launcher.jar;D:\product\10.1.3.1\OracleAS_1\integration\esb\lib\ant-contrib-1.0b1.jar org.apache.tools.ant.Main -Dinstall.type=SoaBasic -Desb.home=D:\product\10.1.3.1\OracleAS_1\integration\esb -Doc4j.home.dir=D:\product\10.1.3.1\OracleAS_1 -Djava.home=D:\product\10.1.3.1\OracleAS_1\jdk -Doracle.home=D:\product\10.1.3.1\OracleAS_1 -Dhost.name=dpxc67-01 -Ddb.vendor=olite -Dimport.export.db_url=jdbc:polite4@localhost:1531:oraesb -Desb.appserver=ias_10.1.3 -Doc4j.design_time_host=dpxc67-01 -Doc4j.design_time_port=8888 -Dprimary.container=home -Dinstall.mode=OracleInstallerias_10.1.3_SoaBasic -Dsso=true -Dinstall.component=install-developer -Dias.name=soademo.dpxc67-01 -Denv.OC4J_STANDALONE_HOME=D:\product\10.1.3.1\OracleAS_1 -Dias_admin.password=*password cannot be displayed* -Denv.JAVA_HOME=D:\product\10.1.3.1\OracleAS_1\jdk -Denv.SERVER_ADMIN_PASSWORD=*password cannot be displayed* -Dopmn.requestport=6003 -Ddb.vendor=olite -Ddb.connect.string=jdbc:polite4@localhost:1531:oraesb -Ddb.username=system -Dias.virtual_host=dpxc67-01 -Denv.DB_USER=system -Denv.DB_URL=jdbc:polite4@localhost:1531:oraesb -Desb.oc4j.container=home -Denv.DB_PASSWORD=*password cannot be displayed* -Ddb.password=*password cannot be displayed* -e -buildfile esbinstall.xml deploy-applications
    Buildfile: esbinstall.xml
    Trying to override old definition of datatype echoproperties
    common_update_server.xml:
    Adding shared library apache.junit ...
    Adding shared library oracle.db.lite ...
    Adding shared library apache.commons 10.1.3 ...
    Adding shared library apache.jdom ...
    Adding shared library apache.slide ...
    Running batch script by:
    java admin_client.jar deployer:oc4j:opmn://dpxc67-01:6003/home -script D:\product\10.1.3.1\OracleAS_1\integration\esb\install\ant-tasks/esb_admin_client_script_sl.txt
    publishSharedLibrary command was successful
    publishSharedLibrary command was successful
    publishSharedLibrary command was successful
    publishSharedLibrary command was successful
    publishSharedLibrary command was successful
    publishSharedLibrary command was successful
    update_server.xml:
    Adding shared library oracle.esb ...
    deployer.url: deployer:oc4j:opmn://dpxc67-01:6003/home
    publishSharedLibrary command was successful
    deploy-applications:
    Deploying ESB design time ...
    Binding ESB design time ...
    Deploying ESB run time ...
    Binding ESB runtime ...
    Deploying orainfra.ear ...
    Binding orainfra ...
    Running batch script by:
    java admin_client.jar deployer:oc4j:opmn://dpxc67-01:6003/home -script D:\product\10.1.3.1\OracleAS_1\integration\esb\install\ant-tasks/esb_deployapps.txt
    10/06/22 14:39:20 Notification ==>Application Deployer for esb-dt STARTS.
    10/06/22 14:39:20 Notification ==>Copy the archive to D:\product\10.1.3.1\OracleAS_1\j2ee\home\applications\esb-dt.ear
    10/06/22 14:39:20 Notification ==>Initialize D:\product\10.1.3.1\OracleAS_1\j2ee\home\applications\esb-dt.ear begins...
    10/06/22 14:39:20 Notification ==>Unpacking esb-dt.ear
    10/06/22 14:39:21 Notification ==>Done unpacking esb-dt.ear
    10/06/22 14:39:21 Notification ==>Unpacking esb_console.war
    10/06/22 14:39:22 Notification ==>Done unpacking esb_console.war
    10/06/22 14:39:22 Notification ==>Unpacking esb-jca-dt.rar
    10/06/22 14:39:22 Notification ==>Done unpacking esb-jca-dt.rar
    10/06/22 14:39:22 Notification ==>Initialize D:\product\10.1.3.1\OracleAS_1\j2ee\home\applications\esb-dt.ear ends...
    10/06/22 14:39:22 Notification ==>Starting application : esb-dt
    10/06/22 14:39:22 Notification ==>Initializing ClassLoader(s)
    10/06/22 14:39:22 Notification ==>Initializing EJB container
    10/06/22 14:39:22 Notification ==>Loading connector(s)
    10/06/22 14:39:22 Notification ==>Starting up resource adapters
    10/06/22 14:39:23 Notification ==>Warning. Unable to set up connection factory to location esb-dt for a resource adapter in {1}
    10/06/22 14:39:23 Notification ==>Initializing EJB sessions
    10/06/22 14:39:23 Notification ==>Committing ClassLoader(s)
    10/06/22 14:39:23 Notification ==>Initialize esb_console begins...
    10/06/22 14:39:23 Notification ==>Initialize esb_console ends...
    10/06/22 14:39:23 Notification ==>Started application : esb-dt
    10/06/22 14:39:23 Notification ==>Application Deployer for esb-dt COMPLETES. Operation time: 2875 msecs
    10/06/22 14:39:23 Notification ==>Application Deployer for esb-rt STARTS.
    10/06/22 14:39:23 Notification ==>Copy the archive to D:\product\10.1.3.1\OracleAS_1\j2ee\home\applications\esb-rt.ear
    10/06/22 14:39:23 Notification ==>Initialize D:\product\10.1.3.1\OracleAS_1\j2ee\home\applications\esb-rt.ear begins...
    10/06/22 14:39:23 Notification ==>Unpacking esb-rt.ear
    10/06/22 14:39:23 Notification ==>Done unpacking esb-rt.ear
    10/06/22 14:39:23 Notification ==>Unpacking provider-war.war
    10/06/22 14:39:23 Notification ==>Done unpacking provider-war.war
    10/06/22 14:39:23 Notification ==>Unpacking esb-jca-rt.rar
    10/06/22 14:39:23 Notification ==>Done unpacking esb-jca-rt.rar
    10/06/22 14:39:23 Notification ==>Initialize D:\product\10.1.3.1\OracleAS_1\j2ee\home\applications\esb-rt.ear ends...
    10/06/22 14:39:23 Notification ==>Starting application : esb-rt
    10/06/22 14:39:23 Notification ==>Initializing ClassLoader(s)
    10/06/22 14:39:23 Notification ==>Initializing EJB container
    10/06/22 14:39:23 Notification ==>Loading connector(s)
    10/06/22 14:39:23 Notification ==>Starting up resource adapters
    10/06/22 14:39:23 Notification ==>Warning. Unable to set up connection factory to location esb-rt for a resource adapter in {1}
    10/06/22 14:39:23 Notification ==>Initializing EJB sessions
    10/06/22 14:39:23 Notification ==>Committing ClassLoader(s)
    10/06/22 14:39:23 Notification ==>Initialize provider-war begins...
    10/06/22 14:39:23 Notification ==>Initialize provider-war ends...
    10/06/22 14:39:23 Notification ==>Started application : esb-rt
    10/06/22 14:39:23 Notification ==>Application Deployer for esb-rt COMPLETES. Operation time: 203 msecs
    10/06/22 14:39:24 Notification ==>Application Deployer for orainfra STARTS.
    10/06/22 14:39:24 Notification ==>Copy the archive to D:\product\10.1.3.1\OracleAS_1\j2ee\home\applications\orainfra.ear
    10/06/22 14:39:24 Notification ==>Initialize D:\product\10.1.3.1\OracleAS_1\j2ee\home\applications\orainfra.ear begins...
    10/06/22 14:39:24 Notification ==>Unpacking orainfra.ear
    10/06/22 14:39:24 Notification ==>Done unpacking orainfra.ear
    10/06/22 14:39:24 Notification ==>Unpacking orainfra.war
    10/06/22 14:39:24 Notification ==>Done unpacking orainfra.war
    10/06/22 14:39:24 Notification ==>Initialize D:\product\10.1.3.1\OracleAS_1\j2ee\home\applications\orainfra.ear ends...
    10/06/22 14:39:24 Notification ==>Starting application : orainfra
    10/06/22 14:39:24 Notification ==>Initializing ClassLoader(s)
    10/06/22 14:39:24 Notification ==>Initializing EJB container
    10/06/22 14:39:24 Notification ==>Loading connector(s)
    10/06/22 14:39:24 Notification ==>Starting up resource adapters
    10/06/22 14:39:24 Notification ==>Initializing EJB sessions
    10/06/22 14:39:24 Notification ==>Committing ClassLoader(s)
    10/06/22 14:39:24 Notification ==>Initialize orainfra begins...
    10/06/22 14:39:24 Notification ==>Initialize orainfra ends...
    10/06/22 14:39:24 Notification ==>Started application : orainfra
    10/06/22 14:39:24 Notification ==>Application Deployer for orainfra COMPLETES. Operation time: 219 msecs
    dehydrationStore:
    Configuring data sources for olite dehydration store ...
    ${env.PCHOME}
    install-developer:
    design time host dpxc67-01
    design time port 8888
    primary container home
    the host is dpxc67-01and the port is 8888
    Exception in thread "main" oracle.tip.esb.install.exception.InstallationDBException: Connection Refused ""
         at oracle.tip.esb.install.db.NonOracleDB.runConnectionTest(Unknown Source)
         at oracle.tip.esb.install.db.NonOracleDB.load(Unknown Source)
         at oracle.tip.esb.install.ESBInstaller.setupDB(Unknown Source)
         at oracle.tip.esb.install.ESBInstaller.handleDesignTimeSpecificActions(Unknown Source)
         at oracle.tip.esb.install.ESBInstaller.main(Unknown Source)
    Caused by: java.sql.SQLException: [POL-3023] ????????
         at oracle.lite.poljdbc.LiteThinJDBCConnection.thinSQLError(Unknown Source)
         at oracle.lite.poljdbc.LiteThinJDBCConnection.thinDriverConnect(Unknown Source)
         at oracle.lite.poljdbc.LiteThinJDBCConnection.connect(Unknown Source)
         at oracle.lite.poljdbc.LiteThinJDBCFactory.createConnection(Unknown Source)
         at oracle.lite.poljdbc.POLJDBCConnection.<init>(Unknown Source)
         at oracle.lite.poljdbc.OracleConnection.<init>(Unknown Source)
         at oracle.lite.poljdbc.POLJDBCDriver.connect(Unknown Source)
         at oracle.tip.esb.install.db.DriverManagerDataSource.getConnection(Unknown Source)
         ... 5 more
    Java Result: 1
    Copying 1 file to D:\product\10.1.3.1\OracleAS_1\j2ee\home\lib\ext
    set_app_sso_option:
    Using sso=true. Redeploying esb-dt with sso
    Copying 1 file to D:\product\10.1.3.1\OracleAS_1\j2ee\home\applications\esb-dt\META-INF
    Copying 1 file to D:\product\10.1.3.1\OracleAS_1\j2ee\home\application-deployments\esb-dt

    It could be due to system language setting -
    install SOA Suite failed
    Regards,
    Anuj

  • Gateway in Oracle Web Service Manager

    Hi,
    Does anybody know a really usable document for gateways in Oracle Web Service Manager?
    I tried to use the common Oracle's document to create a gateway and counfigure a tomcat-axis web service in it, but I could not manage it.
    Supposing that I have a webservice on http://localhost:8088/axis/services/ExtService?wsdl
    and I have a OWSM administrable on http://localhost:3115/ccore
    what wuld be the steps to register my webservice into OWSM to be able to call my web service through OWSM?
    thanx in advance,
    Attila

    Hi Eric,
    thank you for your answer.
    Now I managed to authenticate the user with WS-BASE against LDAP server (ApacheDS), but, with the authorization I can not move on.
    The structure of my Ldap entries is the following:
    -> system
      -> groups
        -> tomcatCallers
    attributes: cn: tomcatCallers
    objectClass: groupOfUniqueNames
    objectClass: top
    uniqueMember: 0.9.2342.19200300.100.1.1=owsmuser,
    0.9.2342.19200300.100.1.1=admin,2.5.4.11=system
      -> users
        -> owsmuser
    attributes: cn: OWSM user
    objectClass: person
    objectClass: organizationalPerson
    objectClass: inetOrgPerson
    objectClass: top
    sn: OWSM
    uid: owsmuser
    So, Authentication against owsmuser is OK, with parameters:
    LDAP baseDN (*): ou=users,ou=system
    Uid Attribute (*): uid
    How should I configure the policy step Ldap Authorize?
    I tried it with parameters:
    LDAP baseDN (*): ou=system
    ServiceRoles : tomcatCallers
    Uid Attribute (*): uid
    but it does not seem to work. I get the fault: 'Access Denied. User: owsmuser'
    One more question :-) :
    if I make a 2nd policy gateway with ID C0003002 and configure it in file
    %OWSM_HOME%\j2ee\home\applications\gateway\gateway\WEB-INF\gateway-config-installer.properties
    with propery gateway.component.id=C0003002 and restart the OWSM the gateway identified by C0003001 becomes unreachable.
    How can I configure OWSM to eable all the gateways at the same time?
    thanx in advance,
    Attila
    Edited by: user5329589 on Jul 1, 2010 5:04 AM

  • Making Asynchronous Web Services in apache axis

    Hi all,
    I am willing to make an asynchronous web service using apache axis.Can I use Tomcat 5.x or I have to use WebLogic only.Please help.
    With regards,
    ajse

    Hi all,
    I really need to know this,becouse I am running out of time.Can anyone pls
    let me know about this?
    With regards,
    ajse

  • Error in Calling Oracle Web Service through Eclipse-indigo

    Hi All,
    I'm getting an below error when trying to call my oracle web service through Eclipse-indigo.
    Error:-
    IWAB0135E An unexpected error has occurred.
    502
    Bad Gateway
    Steps followed to create oracle web service and invoke WS :-
    Followed link
    http://docs.oracle.com/cd/B28359_01/appdev.111/b28369/xdb_web_services.htm
    which explans how to create oracle web service.
    1. Configure HTTP Access
    2. Configure the ORAWSV Servlet
    3. created user 'test' and wrote simple procedure getdescription which will return name for request id.
    4. granted all privilages to user.
    5. The orawsv servlet automatically generates a WSDL file.
    6. trying to call WS through Eclipse-indigo, but i get error.

    Trying to test via PL/SQL first via (see the following url for more info: Re: Using utl_dbws to call web service ) for example something like the following:
    SQL> set serveroutput on
    SQL> --
    SQL> def USERNAME=DBNWS
    SQL> --
    SQL> DECLARE
      2    V_SOAP_REQUEST      XMLTYPE := XMLTYPE(
      3  '<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/
    encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
      4          <SOAP-ENV:Body>
      5                  <m:SNUMBER-GET_SQRTInput xmlns:m="http://xmlns.oracle.com/orawsv/&USERNAME/GET_SQRT">
      6                          <m:INPUT_VALUE-NUMBER-IN>2</m:INPUT_VALUE-NUMBER-IN>
      7                  </m:SNUMBER-GET_SQRTInput>
      8          </SOAP-ENV:Body>
      9  </SOAP-ENV:Envelope>');
    10    V_SOAP_REQUEST_TEXT CLOB := V_SOAP_REQUEST.getClobVal();
    11    V_REQUEST           UTL_HTTP.REQ;
    12    V_RESPONSE          UTL_HTTP.RESP;
    13    V_BUFFER            VARCHAR2(1024);
    14  BEGIN
    15
    16    V_REQUEST := UTL_HTTP.BEGIN_REQUEST(URL => :URL, METHOD => 'POST');
    17    UTL_HTTP.SET_HEADER(V_REQUEST, 'User-Agent', 'Mozilla/4.0');
    18    V_REQUEST.METHOD := 'POST';
    19    UTL_HTTP.SET_HEADER (R => V_REQUEST, NAME => 'Content-Length', VALUE => DBMS_LOB.GETLENGTH(V_SOAP_REQUEST_TEXT));
    20    UTL_HTTP.WRITE_TEXT (R => V_REQUEST, DATA => V_SOAP_REQUEST_TEXT);
    21
    22    V_RESPONSE := UTL_HTTP.GET_RESPONSE(V_REQUEST);
    23    LOOP
    24      UTL_HTTP.READ_LINE(V_RESPONSE, V_BUFFER, TRUE);
    25      DBMS_OUTPUT.PUT_LINE(V_BUFFER);
    26    END LOOP;
    27    UTL_HTTP.END_RESPONSE(V_RESPONSE);
    28  EXCEPTION
    29    WHEN UTL_HTTP.END_OF_BODY THEN
    30      UTL_HTTP.END_RESPONSE(V_RESPONSE);
    31  END;
    32  /
    old   5:                <m:SNUMBER-GET_SQRTInput xmlns:m="http://xmlns.oracle.com/orawsv/&USERNAME/GET_SQRT">
    new   5:                <m:SNUMBER-GET_SQRTInput xmlns:m="http://xmlns.oracle.com/orawsv/DBNWS/GET_SQRT">
    <?xml version="1.0" ?>
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body>
    <GET_SQRTOutput xmlns="http://xmlns.oracle.com/orawsv/DBNWS/GET_SQRT">
    <RETURN>1.41421356237309504880168872420969807857</RETURN>
    </GET_SQRTOutput>
    </soap:Body>
    </soap:Envelope>
    PL/SQL procedure successfully completed.
    SQL> set serveroutput on
    SQL> --In the example give above the WSDL info should be seen via http://xmlns.oracle.com/orawsv/DBNWS/GET_SQRT?wsdl

  • Invoking a web service not created using oracle web service lib

    Hi All,
    I have a need to invoke my web service from oracle sql command. My web service not created using oracle web service library, but it is created using axis c++ libraries. Is it possible to do so,
    Thanks in advance,
    Regards,
    Monica

    In order to call out from the database process, is SQL (or PL/SQL) you need to generate some client code, that understand the details about the specific of the service you want to invoke and can produce the correct SOAP request. Once this proxy is uploaded in the Database, you can use it.
    There is a set of Database Web services samples that should help you get started. You can also take a look at the developer's guide - see Developing a Web Service Client in the Database.
    Hope it answers your question.
    --eric                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Confirming method to secure web services through oracle web service manager

    Hi All,
    I am just wondering about the method to secure web service through oracle web service manager.
    I have a unsecure web service "helloworld" which is deployed on JWSDP1.6 toolkit.I want to secure it through oracle web service manager.
    Inorder to secure this unsecure web service,I use gateway(web service manager for securing web service using message level security through certificate).
    So when client want to access the helloworld service,it contacts the gateway securely and gateway intern connect to original web service after decrypting and verification of the signature.When gateway gets response from the web service,it signs the response message and then encrypt and passs on to the client.
    So my question is,is it the right way to secure web service?
    As I am getting the following fault exception :
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    <SOAP-ENV:Body>
    <SOAP-ENV:Fault>
    <faultcode "http://schemas.oblix.com/ws/2003/08/Faults">c</faultcode>
    <faultstring>Step execution failed with an exception
    </faultstring>
    <detail></detail>
    </SOAP-ENV:Fault>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    I checked the log at :
    C:\coresv_install_home\external\oc4j-10.1.2.0.0\j2ee\home\log\http-web-access
    but there is no helpful information available.Thanks for any help.
    Kash

    Hi Rajesh,
    Thanks for your reply.I am using the following policy steps:
    1)for Request (Decrypt and Verify signature).
    2)for Response(Sign Message and Encrypt).
    The configuration for Request is shown below:
    Pipeline "Request"
    Pipeline Steps:
    Start Pipeline
    Log
    Decrypt and Verify Signature
    Basic Properties Type Default Value
    Enabled (*) boolean true true
    XML Decryption Properties Type Default Value
    Decryptor''s keystore location (*) string C:\Sun\jwsdp-2.0\xws-security\etc\server-keystore.jks
    Decrypt Keystore Type (*) string jks jks
    Decryptor''s keystore password string *******
    Decryptor''s private-key alias (*) string s1as
    Decryptor''s private-key password string *******
    Enforce Encryption (*) boolean true true
    XML Signature Verification Properties Type Default Value
    Verifying Keystore location (*) string C:\Sun\jwsdp-2.0\xws-security\etc\server-truststore.jks
    Verifying Keystore type (*) string jks jks
    Verifying Keystore password string *******
    Signer''s public-key alias (*) string xws-security-client
    Enforce Signing (*) boolean true true
    End Pipeline
    And the configuration for Response is shown below:
    Pipeline "Response"
    Pipeline Steps:
    Start Pipeline
    Log
    Sign Message and Encrypt
    Basic Properties Type Default Value
    Enabled (*) boolean true true
    Signing Properties Type Default Value
    Signing Keystore location (*) string C:\Sun\jwsdp-2.0\xws-security\etc\server-keystore.jks
    Signing Keystore Type (*) string jks jks
    Signing Keystore password string *******
    Signer''s private-key alias (*) string s1as
    Signer''s private-key password string *******
    Signed Content (*) string BODY BODY
    Sign XPATH Expression string
    Sign XML Namespace string[]
    Encryption Properties Type Default Value
    Encryption Keystore location (*) string C:\Sun\jwsdp-2.0\xws-security\etc\server-truststore.jks
    Encrypt Keystore Type (*) string jks jks
    Encryption Keystore password string *******
    Decryptor''s public-key alias (*) string xws-security-client
    Encrypted Content (*) string BODY BODY
    Encrypt XPATH Expression string
    Encrypt XML Namespace string[]
    End Pipeline
    I checked the log again but nothing useful there,it is just giving the following values:
    2006-08-14 16:32:50,372 INFO [Thread-21] mstore.OLiteMStore - SELECT MEASUREMENT_STR FROM MEASUREMENT_PERSISTED_STORE WHERE ID=? FOR UPDATE
    2006-08-14 16:34:50,364 INFO [Thread-16] mstore.OLiteMStore - INSERT INTO MEASUREMENT_PERSISTED_STORE (ID,DEF_ID,CONTEXT_ID,PARENT_CONTEXT_ID,TIME,STORETIME,KEY0,KEY1,KEY2,KEY3,KEY4,KEY5,KEY6,KEY7,KEY8,KEY9,KEY10,KEY11,KEY12,KEY13,KEY14,KEY15,KEY16,KEY17,KEY18,KEY19,KEY20,KEY21,KEY22,KEY23,KEY24,KEY25,KEY26,KEY27,KEY28,KEY29,KEY30,KEY31,KEY32,KEY33,KEY34,KEY35,KEY36,KEY37,KEY38,KEY39,DBM0,MEASUREMENT_STR) VALUES(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,'R',empty_clob())
    2006-08-14 16:34:50,364 INFO [Thread-16] mstore.OLiteMStore - SELECT MEASUREMENT_STR FROM MEASUREMENT_PERSISTED_STORE WHERE ID=? FOR UPDATE
    Any help would be appreciated.Thanks.
    Kash

  • Nyone who had success using sign-encrypt policy(oracle web service manager)

    Hi All,
    I could not succeed in using sign Message and Encrypt and decrypt and verify signature policy using oracle web services manager.So I would be grateful if somebody who had success in using it would shed light on its use.
    Basically,I am using the following policy steps in securing a helloworld web service using gateway(oracle web services manager) :
    1)for Request (Decrypt and Verify signature).
    2)for Response(Sign Message and Encrypt).
    The configuration for Request is shown below:
    Pipeline "Request"
    Pipeline Steps:
    Start Pipeline
    Log
    Decrypt and Verify Signature
    Basic Properties Type Default Value
    Enabled (*) boolean true true
    XML Decryption Properties Type Default Value
    Decryptor''s keystore location (*) string C:\Sun\jwsdp-2.0\xws-security\etc\server-keystore.jks
    Decrypt Keystore Type (*) string jks jks
    Decryptor''s keystore password string *******
    Decryptor''s private-key alias (*) string s1as
    Decryptor''s private-key password string *******
    Enforce Encryption (*) boolean true true
    XML Signature Verification Properties Type Default Value
    Verifying Keystore location (*) string C:\Sun\jwsdp-2.0\xws-security\etc\server-truststore.jks
    Verifying Keystore type (*) string jks jks
    Verifying Keystore password string *******
    Signer''s public-key alias (*) string xws-security-client
    Enforce Signing (*) boolean true true
    End Pipeline
    And the configuration for Response is shown below:
    Pipeline "Response"
    Pipeline Steps:
    Start Pipeline
    Log
    Sign Message and Encrypt
    Basic Properties Type Default Value
    Enabled (*) boolean true true
    Signing Properties Type Default Value
    Signing Keystore location (*) string C:\Sun\jwsdp-2.0\xws-security\etc\server-keystore.jks
    Signing Keystore Type (*) string jks jks
    Signing Keystore password string *******
    Signer''s private-key alias (*) string s1as
    Signer''s private-key password string *******
    Signed Content (*) string BODY BODY
    Sign XPATH Expression string
    Sign XML Namespace string[]
    Encryption Properties Type Default Value
    Encryption Keystore location (*) string C:\Sun\jwsdp-2.0\xws-security\etc\server-truststore.jks
    Encrypt Keystore Type (*) string jks jks
    Encryption Keystore password string *******
    Decryptor''s public-key alias (*) string xws-security-client
    Encrypted Content (*) string BODY BODY
    Encrypt XPATH Expression string
    Encrypt XML Namespace string[]
    End Pipeline
    But I am getting the following fault exception while accessing this secure web service :
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    <SOAP-ENV:Body>
    <SOAP-ENV:Fault>
    <faultcode "http://schemas.oblix.com/ws/2003/08/Faults">c</faultcode>
    <faultstring>Step execution failed with an exception
    </faultstring>
    <detail></detail>
    </SOAP-ENV:Fault>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    I would appreciate your help.Thanks.
    Kash

    Hi clemens,
    Actually I installed OracleWebServices_Manager_4_0_3 and I see my installation directory does not contain any of the directory structure you mention.
    It installed oracle web services manager in the following location:
    C:\coresv_install_home
    and it contains the following subdirectories:
    1)bin
    2)config
    3)db
    4)ears
    5)external
    6)extlicences
    7)lib
    8)samples
    9)scripts
    10)wars
    So I like to ask did you install the same version of the oracle web services manager, if not which version you install in which security is working for you.Thanks for any help.
    Kash

  • ORACLE.FDK.FEATURENOTENABLED error in Oracle Web Services

    I downloaded Oracle Web Services (10.1.2) sample code from the link - http://www.oracle.com/technology/products/cs/developer/contentservicesdev/contenservicesdevkit.html to upload documents into OCS. I modified the properties file (ws.properties) and UploadDownload.java for environment specific details.
    I executed the UploadDownload class file as a standalone file. Sometimes it executes fine and the file gets uploaded. But sometimes an error occurs expecially when it trys to authenticate the user using RemoteLoginManager.login() method.
    But the next time when I execute the file without modifying any file, it runs
    successfully.
    The error message is
    AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
    faultSubcode:
    faultString: ORACLE.FDK.UnexpectedError:ORACLE.FDK.FeatureNotEnabled

    RemoteLoginManager:
    Tip – Cleartext authentication works only through HTTPS unless you change the domain property IFS.DOMAIN.WS.CleartextAuthenticationRequiresHttps to false. Use the Oracle Enterprise Manager 10g
    Application Server Control for Collaboration Suite (Oracle Collaboration Suite Control) to modify domain properties;
    click Content on the Collaboration Suite Home page, then click Domain Properties. You must restart the domain once
    you modify this property. Using RemoteLoginManager.login() over HTTP without setting this property to false will likely
    result in a FeatureNotEnabled exception.

  • Error in  HelloWorld service using oracle web services manager(Test Engine)

    Hi All,
    I deployed simple hello world web services on jwsdp2.0 and it is running at the following end point address :
    http://localhost:8080/jaxrpc-HelloWorld/hello
    When I use the Test engine provided by oracle web services manager to test this web service,Then I got the following response:
    <Result><ServiceResult name="sayHelloBack"><Data>Could not send: JAXRPCSERVLET28: Missing port information</Data></ServiceResult></Result>
    I am just wondering what is the cause of this behavior?Is it because of compatibility problem between oracle and jwsdp2.0 based web services?As I mentioned earlier that HelloWorld Service is running under jwsdp2.0 & tomcat50-jwsdp and it works fine from jwsdp2.0 based client.I would appreciate your reply.Thanks.
    Kashif

    I had the same problem, but adding the ant/lib directory to classpath helped.

  • Configuring OpenSSO Web Service Security on Tomcat

    Dear All,
    I want to configure a simple OpenSSO Web Service security for my application. My web service is on Tomcat and I have used JAX-WS.
    Please let me know if there is something we can develop just by configuring OpenSSO properties, instead of writing the WSC and WSP SOAP message handlers.
    Regards,
    Tarak

    Dear All,
    I want to configure a simple OpenSSO Web Service security for my application. My web service is on Tomcat and I have used JAX-WS.
    Please let me know if there is something we can develop just by configuring OpenSSO properties, instead of writing the WSC and WSP SOAP message handlers.
    Regards,
    Tarak

Maybe you are looking for