Problem in Axis2 version service

Hi
We have done a full installation of BOBJ Entreprise Premium XI 3.1 SP 2 on a Microsoft 2003 Server.
The installation is done with all default settings (ports) and MySQL is also installed.
We have installed Tomcat as Web Server (5.5.20) and also deployed BOBJ to Internet Information Server (IIS).
When we try to validate the Query as a Web Service installation (http://dkcphdb10:8080/dswsbobje/ - click on Validate) we get the following message:
- There was a problem in Axis2 version service , may be the service not available or some thing has gone wrong. But this does not mean system is not working ! Try to upload some other service and check to see whether it is working.
Hope someone has an answer?
Br.
David

Hi BW BW,
We have not been able to validate the Query as a Web Service yet. However, even though we receive this error, we have not seen any errors in the functionality of BOBJ Enterprise so far. We have been able to create a Query as a web service and use it in Xcelsius. We had some issues trying to connect to the Query as a web service from Xcelcius, but we found out that it was related to the way we wrote the hostname in the WSDL field in the Xcelsius query as a web service connection. In the beginning we just wrote it as "hostname:8080.......", but we solved the problem by using the full hostname such as this "http://hostname.domain:8080......."
I don't know if this helps you, but it solved our problem with Query as a web service. If we run into other problems regarding the axis2 I will return to this thread!
Best regards,
David

Similar Messages

  • HT6114 i have a problem with notification of service battery since i installed mavericks. My macbook air is 2012 version.

    i have a problem with notification of service battery since i installed mavericks. My macbook air is 2012 version. Any solution?

    This from the crash log
    Dyld Error Message:
      Library not loaded: /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
      Referenced from: /System/Library/StagedFrameworks/Safari/Safari.framework/Safari
    indicates there is a missing library on your system. What problems were you having before that caused you to delete Safari? How did you delete it?
    You're best bet in this case is to re-install the OS. While doing a re-install will not normally harm your user data having a good working backup in cases like this is essential.

  • Axis2 web services deployment

    Hello,
    I recently started to work on web service using Axis2 release.
    I have download the axis2 related files followed the instruction given in the page (http://ws.apache.org/axis2/1_2/installationguide.html) able to access the validate and listservices pages.
    In that "axis2" web application "Version" services is there, i am able to see the wsdl and xsd with the following urls
    http://localhost:8050/axis2/services/Version?wsdl
    http://localhost:8050/axis2/services/Version?xsd
    The problem is if accessed the "Version" services with the url
    http://localhost:8050/axis2/services/Version.The browser displays following message
    "Please enable REST support in WEB-INF/conf/axis2.xml and WEB-INF/web.xml".I tried to change few settings in web.xml & axis2.xml still same message displayed in browser.
    i need help to resolve this problem. Thanks in advance.
    Regards
    Ragunathan

    Hi srikanth,
    i am tried with url "http://localhost:8050/axis2/services/Version/getVersion". but still same error message i am getting.any idea.thanks for your answer.
    Regards
    ragunathan

  • Error while creating axis2 web service client

    Hi, I am making axis2 web services without using any tool . I made an aar file and deployed in the jboss application server . The aar deployed successfully. The server generated wsdl file. When i tried to make an axis2 client code from wsdl2java command (i also tried to make client using myeclipe) i got the following error:
    WS-1:(BP2402) The wsdl:binding element does not use a soapbind:binding element as declared in section "3 soap binding " of the wsdl 1.1 specification_
    I used the following versions of software
    axis2 1.4
    jboss 4.2
    maven 2.0.9
    Plz help me.
    Here is my wsdl
    <?xml version="1.0" encoding="UTF-8" ?>
    - <wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:ns1="http://org.apache.axis2/xsd" xmlns:ns="http://ws.apache.org/axis2" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="http://ws.apache.org/axis2">
    - <wsdl:types>
    - <xs:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://ws.apache.org/axis2">
    - <xs:element name="sayHello">
    - <xs:complexType>
    - <xs:sequence>
    <xs:element minOccurs="0" name="param0" nillable="true" type="xs:string" />
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    - <xs:element name="sayHelloResponse">
    + <xs:complexType>
    - <xs:sequence>
    <xs:element minOccurs="0" name="return" nillable="true" type="xs:string" />
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    </xs:schema>
    </wsdl:types>
    - <wsdl:message name="sayHelloRequest">
    <wsdl:part name="parameters" element="ns:sayHello" />
    </wsdl:message>
    - <wsdl:message name="sayHelloResponse">
    <wsdl:part name="parameters" element="ns:sayHelloResponse" />
    </wsdl:message>
    - <wsdl:portType name="HelloWorldPortType">
    - <wsdl:operation name="sayHello">
    <wsdl:input message="ns:sayHelloRequest" wsaw:Action="urn:sayHello" />
    <wsdl:output message="ns:sayHelloResponse" wsaw:Action="urn:sayHelloResponse" />
    </wsdl:operation>
    </wsdl:portType>
    - <wsdl:binding name="HelloWorldSoap11Binding" type="ns:HelloWorldPortType">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
    - <wsdl:operation name="sayHello">
    <soap:operation soapAction="urn:sayHello" style="document" />
    - <wsdl:input>
    <soap:body use="literal" />
    </wsdl:input>
    - <wsdl:output>
    <soap:body use="literal" />
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    - <wsdl:binding name="HelloWorldSoap12Binding" type="ns:HelloWorldPortType">
    <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
    - <wsdl:operation name="sayHello">
    <soap12:operation soapAction="urn:sayHello" style="document" />
    - <wsdl:input>
    <soap12:body use="literal" />
    </wsdl:input>
    - <wsdl:output>
    <soap12:body use="literal" />
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    - <wsdl:binding name="HelloWorldHttpBinding" type="ns:HelloWorldPortType">
    <http:binding verb="POST" />
    - <wsdl:operation name="sayHello">
    <http:operation location="HelloWorld/sayHello" />
    - <wsdl:input>
    <mime:content type="text/xml" part="sayHello" />
    </wsdl:input>
    - <wsdl:output>
    <mime:content type="text/xml" part="sayHello" />
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    - <wsdl:service name="HelloWorld">
    - <wsdl:port name="HelloWorldHttpSoap11Endpoint" binding="ns:HelloWorldSoap11Binding">
    <soap:address location="http://172.21.21.233:8080/axis2/services/HelloWorld.HelloWorldHttpSoap11Endpoint" />
    </wsdl:port>
    - <wsdl:port name="HelloWorldHttpSoap12Endpoint" binding="ns:HelloWorldSoap12Binding">
    <soap12:address location="http://172.21.21.233:8080/axis2/services/HelloWorld.HelloWorldHttpSoap12Endpoint" />
    </wsdl:port>
    - <wsdl:port name="HelloWorldHttpEndpoint" binding="ns:HelloWorldHttpBinding">
    <http:address location="http://172.21.21.233:8080/axis2/services/HelloWorld.HelloWorldHttpEndpoint" />
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>

    Hi
    Check this thread
    WD Message Manager
    Reward opints if usefull....

  • Performance problems after installing XP Service Pack 3

    Hello,
    After upgrading my client XP-machine to Service Pack 3, I have serious performance issues working with ApEx. Firstly, establishing the connection to the ApEx Workspace and then logging in both are very slow. Navigating through the workspace works fine, however when I then open any page for editing and/or try to run it, again it is very slow. As we work with PL/sql Embedded gateway I have changed the parameter SHARED_SERVERS to 10, but this did not make any difference. Remotely connecting to this server in other ways such as ping, connecting to xmlpserver, mapping network drives and connecting to the database all work fine.
    My collegues also working witk Service Pack 3 have no performance issues. However when I performed a rollback of the XP Service Pack 3, the performance issue was gone!
    Does anyone know of any issues similar to this problem?
    Regards,
    Ben van Dort

    This issue is probably related to an update of InternetExplorer by Service Pack 3. Working with Firefox instead of IE gives no performance problems whatsoever.
    Version of IE after Service Pack 3: 6.0.2900.5512.xpsp_sp3_gdr.080814-1236CO
    Ben

  • The problem related to wireless service Wi-Fi connectivity Never work properly

    Hi
    i am bashair from KSA
    I have iPhone 5, you update your iPhone to version 6.1.3
    The problem related to wireless service Wi-Fi connectivity
    Never work properly, you try Method posed but did not succeed..
    i need help me please
    thanks..

    UPDATE
    Hey this is totally weird. I haven't done jailbreak at all and I won't But how is possible that default apps such as Safari and Appstore have the problem I've mentioned before and Skyfire works perfectly without any trouble.
    So to sum up:
    Safari: loading stucks after few seconds on wi-fi, mostly doesn't load pictures
    Appstore: loading stucks after few seconds on wifi and it keeps saying "loading"
    Facebook and Youtube: doesn't load pictures
    SKYFIRE: loads everything without any trouble
    and completely everything works on Edge...
    So tell me W.T.F. :-D

  • I have a problem after update version 6.0.1, the call not smoothly. how is your ideas?

    i have a problem after update version 6.0.1, the call not smoothly. how is your ideas?

    Hi all
    Like to share that my AV Adapter problem is solved ... brought it to Apple Service Center as a last resort after the new iOS v5.1 did not solve mine like some others have theirs solved.
    In fact, the Apple Service Center tried my AV Adapter and find that it does not work with their iphone and ipad too and flagged for a replacement.
    Just this week collected the replacement and tested that the replaced adapter works !
    So this "unsupported device" error msg could also be due to faulty adapter .... although it is unbelievable that a "simple" wired connector could so easily breakdown after 1 time use !   I never did believe that it can be broken so easily as we hardly used it after the first testing with our TV on HDMI.
    Closing this chapter of mine finally.

  • After upgrading to firefox 3.6 I have problem with hotmail email service

    after upgrading to firefox 3.6.4 I have problem with hotmail email service, however I can login in hotmail, I can't open mails or delet or do anything else with them.
    == URL of affected sites ==
    http://hotmail.msn.com

    Thank you, but I already have "always show tabs bar" set.
    Also, I have two computers and the other is running the exact same version of Firefox, and the exact same theme, but it does not have this problem.
    To make sure I'm being clear: there is an "x" on each tab that allows me to close it when I have multiple tabs open. When I have only one tab open, there is no "x"; so in order to close the webpage I have to open another empty tab, and then close the first. My other computer has the "x" to close the tab visible even when there is only one tab so that I can close the page and have an empty (marked "(untitled)" tab). Please help!

  • Not able to deploy axis2 web service on oc4j 10g server

    Not able to deploy axis2 web service on oc4j 10g server, getting internal server every time I click on services link....
    Edited by: 974237 on Nov 30, 2012 4:17 AM

    Not able to deploy axis2 web service on oc4j 10g server, getting internal server every time I click on services link....
    Edited by: 974237 on Nov 30, 2012 4:17 AM

  • Problem with new version 4.3.2 apps not working " after update to the new version "

    Problem with new version 4.3.2 apps not working " after update to the new version "
    i was in 4.3.1 then i do the update , but now after update i face this problem , so what i Supposed to do ?!!

    Hi There
    Had the same problem as you. App would terminate when launched.
    Solution to working You Tube app:
    -Go to playstore
    - Uninstall app (it doesn't remove the app, only removes the update)
    - "Et Voila", working again.
    This doesn't correct the problem, it's just a workaround for you to be able to use youtube app again.
    Hope it helped.
    Best Regards

  • Problem constructing a web service request wich does not include namespace

    Hi!
    I'm evaluating Flex 3 for a web development.
    I'm having problems with a web service invocation.
    This is the soap request made with Soap UI:
    <soapenv:Envelope xmlns:soapenv="
    http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:open="
    http://www.openuri.org/">
    <soapenv:Header/>
    <soapenv:Body>
    <open:querySoftware>
    <open:imei></open:imei>
    <open:groupId></open:groupId>
    </open:querySoftware>
    </soapenv:Body>
    </soapenv:Envelope
    <mx:WebService id="giService" wsdl="
    http://..." result="onResult(event)">
    <mx:operation name="querySoftware">
    <imei>1<imei>
    </mx:request>
    </mx:operation>
    </mx:WebService>
    When invoking operation I get this error:
    [RPC Fault faultString="HTTP request error"
    faultCode="Server.Error.Request" faultDetail="Error: [IOErrorEvent
    type="ioError" bubbles=false cancelable=false eventPhase=2
    text="Error #2032: Error de secuencia. URL: ]
    at mx.rpc::AbstractInvoker/
    http://www.adobe.com/2006/flex/mx/internal::faultHandler()[E:\dev\3.0.x\frameworks\project s\rpc\src\mx\rpc\AbstractInvoker.as:216
    at
    mx.rpc::Responder/fault()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\Responder.as:49 ]
    at
    mx.rpc::AsyncRequest/fault()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\rpc\AsyncRequest .as:103]
    at
    DirectHTTPMessageResponder/errorHandler()[E:\dev\3.0.x\frameworks\projects\rpc\src\mx\mes saging\channels\DirectHTTPChannel.as:343]
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/redirectEvent()
    I see that Flex is making the request like the following
    wichi is not correct according to Soap UI request:
    <querySoftware>
    <imei></imei>
    <groupId></groupId>
    <querySoftware>
    How could I construct the request to include the open:
    namespace?
    Thanks a lot.

    I actually worked through this problem yesterday. This thread
    should help you:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=60&catid=585&threadid =1377262&enterthread=y

  • BT Infinity - Problems and Poor Customer Service

    Hello,
    We are new customers to BT - having only had our Infinity Fibre Optic connection installed into our new home 13 days ago. Since installation, it's become evident that the Hub struggles to maintain any decent wireless connection to the downstairs of the property, often providing download speeds of just 0.2 Mbps or around that figure.
    Having run various tests and spoken with BT online, we came to the conslusion that we're suffering from a Wifi Black Spot. However, the advice received was for us to Purchase an second Router / Hotspot in order to fix the connection; which I find absolutely disgusting.
    I find it very difficult to fathom that, as new customers who've just recently paid for the installation of this service, we're expected to pay to fix the poor quality of this service. BT off an official Wi-Fi Home Hotspot 500 Kit for £89.99 - so are you seriously telling me that we have to fork out another £90 to fix the substandard service we've received so far?
    Especially given how early we are into the contract, I have to say how severly disappointed I am in the service received from BT at all levels. To expect brand new customers to pay to fix problems created by the service is absolutely dispicable, and if these issues are not addressed in a more fitting manner we may be forced to look into taking further action.
    I look forward to your responce.
    Regards,
    Alan

    Unfortunately no ISP will guarantee wireless speeds because there are to many variables involved in the transmission of wireless, such as environmental factors of the type of property you have, stone walls, concrete floors etc.
    There are a few things you could try to improve things before spending money.
    Make sure that "Smart set up" is turned off. see link how to so that
    http://bt.custhelp.com/app/answers/detail/a_id/44328/~/switching-smart-setup-on-and-off-on-the-bt-ho...
    Some devices have a problem with the Homehub dual band having the same SSid (name). Try giving the 2.4Ghz and 5Ghz frequencies different SSids. Just add a 5 to the end of the 5Ghz SSid so you know which is which. Check the 5 GHz Sync with 2.4 GHz: is set to NO.
    Once you have done that "forget" the connection on your devices and then restart the devices and log onto both the SSids if the device can use both frequencies. Not all devices cn use 5GHz.
    See this link
    http://bt.custhelp.com/app/answers/detail/a_id/44798/~/i-have-problems-connecting-5ghz-and-dual-band...
    Try downloading and running inSSider or another wireless scanner. This will show you the wireless channels that your Homehub/router is transmitting on as well as the surrounding networks. You want to take a note of the channels in use and change your Homehub onto a channel that is not being used.
    See Link how to do that.
    http://bt.custhelp.com/app/answers/detail/a_id/14094/~/how-do-i-change-the-wireless-channel-on-my-bt...
    See link for inSSIDer
    http://www.techspot.com/downloads/5936-inssider.html

  • Reader 9 - problem with pdf version 1.0 and descenders

    2 big problems over here:
    * Reader9 will not properly open files created as pdf version 1.0/1.x
    all text is cut off about 2/3 of the way down, whether or not in fields.
    * Any pdf file version above 1.0created with any version of GhostScript does not have the previous issue, However - no descenders of any font are coming out.
    We do not have either problems with any version of Reader prior to 9

    Hi creamac,
    Welcome to communites
    Please install vmware tool and then on vmware task bar select connect or unplug usb drive . You
    will find that on right hand corner above to task bar of host machine  .
    "Nature always wears the colors of the spirit."

  • Problem with reversal of Service entry Sheet

    Hi All,
    I am facing a problem with reversal of service entry sheet. The user has posted the document in dec 2009 and now the user wants to reverse the doc. I told the process how to reverse it. But when she is trying to revoke the acceptance, she is getting error log.I told her to reset the posting date to present date.Now she tried to change the doc date but she is getting error as "604 item 010 WBS element ****** budget exceeded year 2009". So i advised her further to increase the budget in the year 2009. Even that solution is not working.
    Please help in this regard
    Thanks & Regards
    Nisha Prasad

    Hi,
    The user is not authorised to change the budget. The person resposible for this is telling that increasing the budget wont help. can you tell me how to view whether the budget is available for the system in the period or not? Can you please help me in this regard?
    Thanks
    Nisha

  • I am facing problem in starting ShellHWDetection service Error code 1075,please help

    I am facing problem in starting ShellHWDetection service Error code 1075,please help

    Shellhwdetection is a Windows service which stands for Shell Hardware Detection Service.
    It provides notifications for AutoPlay hardware events.
    System error code 1075 means "The dependency service does not exist or has been marked for deletion."
    Please run services.msc, then find Shell Hardware Detection Service, view its dependencies
    Make sure the three services are set to running "automatic" in Services.
    If this doesn't help, then run sfc to check if there're some missing or corrupted files in system.
    Yolanda Zhu
    TechNet Community Support

Maybe you are looking for

  • Pop Menu

    Hello! Help create a Pop Menu Oracle Forms Developer 6i r2 If someone can explain in steps how to create Pop Menu th

  • Using Mac Pages hotkeys on iPad?

    To write a TV/movie like script in Pages for my Mac I created a series of Hotkeys. F1 was for Slug, F2 was for Action, etc. I also used Pages to say after Slug it would go directly to Action, then to Name, then to dialog, etc. Some things were set to

  • IPad asking for Password for iCloud- FRUSTRATED

    I got an iPad mini as a graduation present and I have had absolutely no problems...yet. I just moved for my job and was settling in to sync up the iPad with the new Wi-Fi password and as soon as I unlock the screen it is prompting me for my password

  • My iPad has a black screen when I unlock it

    My iPad has a black screen when I unlock it but when I reunlock it works agane

  • Audiobook download failure

    While downloading an audiobook purchase, my internet connection fualtered. I was connected long enough to have the money taken out of my account, but didn't receive the text. Any suggestions ?