How to deploy a WSDL on production server?
Hey- i am encouraged by co-operation of this forum users. My this question is quite long, but i wrote down in this way in hope to clearly define my problem.
I am working on my first project deployment on production server and have a small issue.
Scenario I :
-------- On my laptop, when i do a project in OSB (in development) i do the following :
1. I create a Java class in Workshop IDE provided by OSB. Then i generate a WSDL from that class in Workshop IDE itself.
2. Then I deploy the WSDL in Workshop IDE itself, by clicking on WSDL and "Run-runat server".
3. After that I import the WSDL in OSB sbconsole.
4. Then i create a business service based on WSDL. After that I create a proxy service based on business service which i just created.
5. I click on Activate and run the whole thing. It all woks.
Now,
Scenario II :
----------FOR PRACTICE, Today i had to work on production server of OSB.
1. I could not find WorkShop IDE on my production server. So naturally i could not create a Java class or WSDL there.
2. So i re-used my WSDL created in Scenario-I ( by following 1.& 2.) which were created on my locally installed OSB and imported them in production sbconsole.
3. Then i created business service and proxy service created as usual in production-environment sbconsole.
4. Now i clicked on activate and it shows following error :
The invocation resulted in an error: .
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<soapenv:Fault>
<faultcode>soapenv:Server</faultcode>
<faultstring>BEA-380002: Not Found</faultstring>
<detail>
<con:fault xmlns:con="http://www.bea.com/wli/sb/context">
<con:errorCode>BEA-380002</con:errorCode>
<con:reason>Not Found</con:reason>
<con:location>
<con:node>RouteTo_eveningBS</con:node>
<con:path>response-pipeline</con:path>
</con:location>
</con:fault>
</detail>
</soapenv:Fault>
</soapenv:Body>
</soapenv:Envelope>
I think that since i have not deployed the WSDL on server, above error comes up.
So, my questions :
1. Is WorkShop IDE available on production OSB as in development? If yes, and since i have not it installed- how can i install?
2. Without using Workshop IDE, how can i deploy my WSDL on the production server?
Please correct me if I am wrong in my analysis of problem.
Help me out, please.