ABAP WebService Created but unable to locate in Web Services Navigator

Hi all,
We have got a SAP WAS 640 system and had created an RFC and converted into a Web Service via transaction code SE37. Have also confirmed to be working using the test page.
However, in the Web Services Navigator homepage, I am unable to find this newly created ABAP Web Service. Neither can I see the newly created ABAP Web Service in NetWeaver Developer Studio.
My question is, is the ABAP Web Service deployed in the ABAP stack or J2EE stack? How can I get to "see" the Web Service  via the Web Service Navigator page? Did I miss any configurations?
Thanks for any help rendered.

Hi,
Do you see you web service in the wsadmin trans?

Similar Messages

  • "unable to locate a Web player that matches your platform and browser."

    Hey guys... I run Winxp SP2 pro, but whenever i try
    installing Flash from the website, it keeps telling me that "unable
    to locate a Web player that matches your platform and browser. ".
    Ive downloaded Explorer 7, still didnt work. tried downloading
    AVANT browser, and still nothing.
    BTW, the weird thing is, Flash seems to be already installed
    - but only on my firefox.
    any suggestions as to what can i do to make flash run on my
    Explorer \ Avant \ Maxthon \ Whatever?

    I have the same problem....
    Please contact and help

  • How to delete the Webservice entry from Web service navigator?

    Hi,
    My current issue is that, developers have created many webserivces and these web services are visible in web service navigator that i access by following link
    http://<host>:<port>/wsnavigator
    But now we have to remove the unwanted webservices i.e. i want that unwanted webservices should not be visible to anyone when we access WSNAVIGATOR.
    How should i go about it?
    Am i required to undeploy the web services that is deployed from SDM GUI?
    Please pour in your valuable inputs.
    Any help would be highly appreciated.
    Regards,
    Ameya

    I had to revove the entry from VA. Removing this entry also removes the web service from ws navigator.

  • Unable to Print a Web Services Information Sheet to Obtain a Claim Code

    I'm trying to add a HP LaserJet Pro 200 color MFP m276nw as an ePrint device.  I've successfully updated the printer firmware.  When I enable the web services the Print Information Sheet button appears, but nothing prints when I click it and I'm unable to obtain a claim code.
    I'm stuck.  I'm not sure where to go from here...
    This question was solved.
    View Solution.

    If you have successfully enable web services, you have a couple of options:
    1. use your IP address, input it into your web browser and browse to the embedded web page. Go to the web services tab and find the email address assigned to your printer. It should be something like [email protected] The printer code will be everything before the @ sign.
    2. Go to your control panel. Click on the web services icon (icon on the far left). Click on display email addres. Printer code will be everything before the @ sign.
    3. Print a configuration page. Tools icon - reports - config page. In the right column, locate HP Web Service (bottom right) - printer email address - printer code will be everything before the @ sign.
    Use the xxxxxx before the @ sign for the printer code to register the printer at HP Connected.
    I am an HP employee.
    Say Thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as Accepted Solution

  • Creating a LOV based in a Web Service

    Hey guys...
    I need to create a Lov based in a Web Service Result, but in always getting the same error:
    LOV query is invalid, a display and a return value are needed, the column names need to be different. If your query contains an in-line query, the first FROM clause in the SQL statement must not belong to the in-line query.
    Queries that I'm trying:
    Original Query:
    select extractValue(value(t),'/*/imgLocation','xmlns="http://oracle.ovs.api/types/"') "imgLocation"
    , extractValue(value(t),'/*/imgName','xmlns="http://oracle.ovs.api/types/"') "imgName"
    from wwv_flow_collections c,
    table(xmlsequence(extract(xmltype.createxml(c.clob001),'//getAllTemplateResourcesResponseElement/result','xmlns="http://oracle.ovs.api/types/"'))) t
    where c.collection_name = 'P1_GETALLTEMPLATERESOURCES2_RESULTS'
    Other Query that I tried:
    select imgLocation, imgName from (
    select extractValue(value(t),'/*/imgLocation','xmlns="http://oracle.ovs.api/types/"') "imgLocation"
    , extractValue(value(t),'/*/imgName','xmlns="http://oracle.ovs.api/types/"') "imgName"
    from wwv_flow_collections c,
    table(xmlsequence(extract(xmltype.createxml(c.clob001),'//getAllTemplateResourcesResponseElement/result','xmlns="http://oracle.ovs.api/types/"'))) t
    where c.collection_name = 'P1_GETALLTEMPLATERESOURCES2_RESULTS')
    And I tried creating a view, but I dont know where I have to put this.. Maybe in another process?
    create view as
    select imgLocation, imgName from (
    select extractValue(value(t),'/*/imgLocation','xmlns="http://oracle.ovs.api/types/"') "imgLocation"
    , extractValue(value(t),'/*/imgName','xmlns="http://oracle.ovs.api/types/"') "imgName"
    from wwv_flow_collections c,
    table(xmlsequence(extract(xmltype.createxml(c.clob001),'//getAllTemplateResourcesResponseElement/result','xmlns="http://oracle.ovs.api/types/"'))) t
    where c.collection_name = 'P1_GETALLTEMPLATERESOURCES2_RESULTS')
    Thanks

    Fox,
    I'd start by adding column aliases D and R to the query and see if that helps.
    Greg

  • Unable to call a Web Services via UTL_DBWS

    Hi all,
    I create with Apex 3.1 a web service (it works)
    Now i need to use the UTL_DBWS package to access a web services from PL/SQL
    So i get the Name 'WebServiceDemo', the URL 'http://my_url' and the Target Namespace 'http://my_target'
    from the web service reference to build PL/SQL process
    The operation 'Login' has two input parameters (username as string, password as string - nullable)
    and one ouput parameter (sessionId as string)
    When i run the following source code, i get an error
    ORA-29532: javax.xml.rpc.soap.SOAPFaultException: Well-formedness violation
    Oracle 10.2.0.4
    What am i doing wrong?
    Any help is appreciated,
    Thanks
    Grégory
    Here is my code :
    DECLARE
       service_            UTL_DBWS.service;
       call_               UTL_DBWS.CALL;
       service_qname       UTL_DBWS.qname;
       port_qname          UTL_DBWS.qname;
       operation_qname     UTL_DBWS.qname;
       string_type_qname   UTL_DBWS.qname;
       retx                ANYDATA;
       retx_string         VARCHAR2 (100);
       retx_len            NUMBER;
       params              UTL_DBWS.anydata_list;
    BEGIN
       service_qname := UTL_DBWS.to_qname (NULL, 'WebServiceDemo');
       service_ := UTL_DBWS.create_service (service_qname);
       port_qname := UTL_DBWS.to_qname (NULL, 'WebServiceDemo');
       -- target --
       operation_qname := UTL_DBWS.to_qname ('http://my_target', 'Login');
       call_ := UTL_DBWS.create_call (service_, port_qname, operation_qname);
       -- URL --
       UTL_DBWS.set_target_endpoint_address
          (call_,
           'http://my_url'
       string_type_qname :=
                  UTL_DBWS.to_qname ('http://www.w3.org/2001/XMLSchema', 'string');
       UTL_DBWS.ADD_PARAMETER (call_,
                               'name',
                               string_type_qname,
                               'ParameterMode.IN'
       UTL_DBWS.set_return_type (call_, string_type_qname);
       params (0) := ANYDATA.convertvarchar2 ('my_login');
       retx := UTL_DBWS.invoke (call_, params);
       retx_string := retx.accessvarchar2;
    END;

    I have had this issue before when calling a .NET service, it was firewall related. I didn't actually make the fix so I can't tell you exactly how it was fixed on the server. I hope this info makes sense as this this the info I got from the IT boys
    I’ve install this tool on your computer:
    http://www.microsoft.com/downloads/details.aspx?FamilyID=05C2C932-B15A-4990-B525-66380743DA89&displaylang=en
    which does that:
    Firewall Client for ISA Server can be optionally installed on client computers protected by Microsoft ISA Server. Firewall Client for ISA Server provides enhanced security, application support, and access control for client computers. It provides authentication for Winsock applications that use TCP and UDP, supports complex secondary protocols, and supplies user and application information to the ISA Server logs.
    When a client computer running Firewall Client for ISA Server makes a request, the destination is evaluated by the Firewall Client software, and external requests are directed to the ISA Server computer for handling. No specific routing infrastructure is required. Firewall Client sends user information transparently with each request, enabling you to create a firewall policy on the ISA Server computer with rules that use the authentication credentials presented by the client. ISA Server allows you to configure automatic discovery for Firewall client computers, using a WPAD entry in DNS or DHCP to obtain correct Web proxy settings for clients, depending on their location.
    and I’ve added a exception in IE to the tools-lan settings-advanced-exceptions to be creditworks.* Did this by modifying the GPO that applies to your account, so all the users in National Office should have that exception.
    hope you can use this.
    cheers
    James

  • How do I create a Username Validator for a web service.

    I'm trying to figure out how to create a Username validator. I've followed the WSIT documentation and created their calculator service. The service works when I leave security turned off, so I know I'm good up to this point. I right click on the Web Service in Netbeans, and select Edit Web Services Attributes which pops up the Quality of Service window. I click Secure Service to enable security and select Message Authentication over SSL. I then deselect Use Development Defaults. The Validators button never enables; it stays disabled and greyed out. I've trying picking all different kinds of Security Mechanisms and changing their configuration but I can never get the Validators button to enable. I've also noticed a problem where I select Message Authentication over SSL and deselect Use Development Defaults and then click OK to close the Quality Of Service window. If I then go back to the Quality Of Service window Use Development Defaults is turned back on. The only way I have found around this is to keep turning it off, closing the window and then opening the window again. I sometimes have to screw around with the configuration on the Security Mechanism to be able to keep the Use Development Defaults checkbox unchecked.
    My question is if anyone else has had this problem? How do you go about creating a Username Validator on a Web Service? I know WSIT is pretty new and the IDE wizards seem very buggy. I wouldn't mind creating the Validator by hand and mapping it in, I just can not figure out how to do it.

    I read the examples you referred to. I currently use this method in my non WSIT code, I was trying to figure out how you do the same thing with WSIT (or the equivalent). I've continued playing around with the code, and I found a few settings changes to get my JAX-WS 2.1 SOAP Server to talk with my .Net 3.5 SOAP client. I'm going to stick with the client I have now until I feel it's necessary to switch to WSIT.

  • "Unable to connect to web services" when trying to scan to e-mail on a HP Photosmart 7520

    Hello -  I used to be able to scan to e-mail with no problems and then all of a sudden I keep getting the "Unable to connect to Web Services" error message.  I have checked my network connection and it is fine, I have turned off my router and unplugged my printer but still no luck.  I have seen that this seems to be a common problem from others in this forum but I was hoping someone could help me figure this out.
    I really need to be able to scan documents to my e-mail..... ughh... please help!
    Thanks,

    I am having the same issue.  Please help.

  • HP 7520 Photosmart scanning error message: Unable to connect to Web Services

    After many successful efforts in the past, suddenly I cannot scan to email on my HP Photosmart 7520. I have tried several of the solutions posted to no avail. I keep getting the error message "Unable to connect to Web Services. Confirm Iternet access and try again." I'm on Mac OS X. Very frustrating; I would appreciate help.

    Hello skagitsusan,
    Welcome to the HP Support Forums!
    I am not 100% as to the steps you have tried in attempt to resolve the Scan to Email issue on the 7520, but I would like to offer the steps I have given in another Thread.
    Re: Trouble scanning using Photosmart 6520 <---
    The steps will cover your printer, even though they are different Photosmarts.
    Let me know if this works.
    JERENDS
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • HP 7520 Unable to connect to web services while trying to scan

    I have tried the scan doctor and was able to scan from that program but was unabe to scan using buttons on printer for both Windows 8 and MAC OS X. Error message is consistent Unable to connect to web services. I am trying to scan to email on both Windows 8 and IOS X
    It appears to be a common issue. Is there a downloable fix for all of the owners users of your product?
    Thank you

    Hi Kitray,
    I see that you are trying to scan to your Email, but are unable to. Which Email provider are you trying to scan into? I have found great success by follow the steps I have offered here: Re: Trouble scanning using Photosmart 6520
    Don't worry about the printer not being the exact model as yours as the firmware, steps and settings are all the same.
    Please let me know how you make out with those steps.
    JERENDS
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • HP Photosmart 7525 unable to connect to Web Services

    Pretty much the same issue as everyone else...bought the printer at Costco last year.
    It was working great for a while, printer was connected to the internet, prints perfectly from different devices, scan-to-email, fax, etc...
    But lately, when I try to use the scan-to-email function, I get a "Unable to connect to Web Services".
    I tried several suggested solutions, including changing the DNS, the Semi-Full reset, etc... to no avail.
    PLEASE HELP!

    Hi vincesfo,
    Welcome to the HP Support Forums.  I see that the scan to email feature of your Photosmart 7525 printer is giving you a scan failed message.
    Please call HP’s Cloud Services at 1-855-785-2777 if you live in the USA/Canada region. If you live outside the USA/Canada region please click here to find the Technical Support number for your country/region.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • How to create Java client to use WCC web services

    I'm trying to create a Java client to use web services available with Web Center Content.
    I generated stubs using "cxf-codegen-plugin" and I wrote following code (very trivial):
    DocInfo docInfo = null;
    *try {*
    docInfo = new DocInfo(new URL("http://vmxp43:16200/cs/idcplg?IdcService=GET_SOAP_WSDL_FILE&wsdlName=DocInfo&idcToken=1344065729220:B443F7C3DED844B594F32E0B3914E576&IsSoap=1"));
    *} catch (MalformedURLException e) {*
    e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.
    DocInfoSoap docInfoSoap = docInfo.getDocInfoSoap();
    DocInfoByIDResult docInfoByIDResult =  docInfoSoap.docInfoByID(new Integer(2), null);
    At the moment I'm obtaining following error:
    Exception in thread "main" javax.xml.ws.WebServiceException: Failed to access the WSDL at: http://vmxp43:16200/cs/idcplg?IdcService=GET_SOAP_WSDL_FILE&wsdlName=DocInfo&idcToken=1344065729220:B443F7C3DED844B594F32E0B3914E576&IsSoap=1. It failed with:
    *     Invalid WSDL http://vmxp43:16200/cs/idcplg?IdcService=GET_SOAP_WSDL_FILE&wsdlName=DocInfo&idcToken=1344065729220:B443F7C3DED844B594F32E0B3914E576&IsSoap=1, expected {http://schemas.xmlsoap.org/wsdl/}definitions found html at (lineLine number = 3*
    Column number = 30
    System Id = http://vmxp43:16200/cs/idcplg?IdcService=GET_SOAP_WSDL_FILE&wsdlName=DocInfo&idcToken=1344065729220:B443F7C3DED844B594F32E0B3914E576&IsSoap=1
    Public Id = null
    Location Uri= http://vmxp43:16200/cs/idcplg?IdcService=GET_SOAP_WSDL_FILE&wsdlName=DocInfo&idcToken=1344065729220:B443F7C3DED844B594F32E0B3914E576&IsSoap=1
    CharacterOffset = 133
    *     at com.sun.xml.internal.ws.wsdl.parser.RuntimeWSDLParser.tryWithMex(RuntimeWSDLParser.java:151)*
    *     at com.sun.xml.internal.ws.wsdl.parser.RuntimeWSDLParser.parse(RuntimeWSDLParser.java:127)*
    *     at com.sun.xml.internal.ws.client.WSServiceDelegate.parseWSDL(WSServiceDelegate.java:254)*
    *     at com.sun.xml.internal.ws.client.WSServiceDelegate.<init>(WSServiceDelegate.java:217)*
    *     at com.sun.xml.internal.ws.client.WSServiceDelegate.<init>(WSServiceDelegate.java:165)*
    *     at com.sun.xml.internal.ws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:93)*
    *     at javax.xml.ws.Service.<init>(Service.java:56)*
    *     at com.stellent.docinfo.DocInfo.<init>(DocInfo.java:39)*
    *     at eu.europa.efsa.virtual.library.services.client.TestDocInfo.main(TestDocInfo.java:23)*
    *Caused by: javax.xml.stream.XMLStreamException: Invalid WSDL http://vmxp43:16200/cs/idcplg?IdcService=GET_SOAP_WSDL_FILE&wsdlName=DocInfo&idcToken=1344065729220:B443F7C3DED844B594F32E0B3914E576&IsSoap=1, expected {http://schemas.xmlsoap.org/wsdl/}definitions found html at (lineLine number = 3*
    Column number = 30
    System Id = http://vmxp43:16200/cs/idcplg?IdcService=GET_SOAP_WSDL_FILE&wsdlName=DocInfo&idcToken=1344065729220:B443F7C3DED844B594F32E0B3914E576&IsSoap=1
    Public Id = null
    Location Uri= http://vmxp43:16200/cs/idcplg?IdcService=GET_SOAP_WSDL_FILE&wsdlName=DocInfo&idcToken=1344065729220:B443F7C3DED844B594F32E0B3914E576&IsSoap=1
    CharacterOffset = 133
    *     at com.sun.xml.internal.ws.wsdl.parser.RuntimeWSDLParser.parse(RuntimeWSDLParser.java:120)*
    *     ... 7 more*
    Please, any comment will be appreciated.

    Now I'm trying following code.
    DocInfo docInfo = new DocInfo();
    DocInfoSoap docInfoSoap = docInfo.getDocInfoSoap();
    DocInfoByIDResult docInfoByIDResult =  docInfoSoap.docInfoByID(new Integer(2), null);
    The error I obtain is:
    Exception in thread "main" com.sun.xml.internal.ws.client.ClientTransportException: The server sent HTTP status code 401: Unauthorized
         at com.sun.xml.internal.ws.transport.http.client.HttpTransportPipe.checkStatusCode(HttpTransportPipe.java:196)
         at com.sun.xml.internal.ws.transport.http.client.HttpTransportPipe.process(HttpTransportPipe.java:168)
         at com.sun.xml.internal.ws.transport.http.client.HttpTransportPipe.processRequest(HttpTransportPipe.java:83)
         at com.sun.xml.internal.ws.transport.DeferredTransportPipe.processRequest(DeferredTransportPipe.java:105)
         at com.sun.xml.internal.ws.api.pipe.Fiber.__doRun(Fiber.java:587)
         at com.sun.xml.internal.ws.api.pipe.Fiber._doRun(Fiber.java:546)
         at com.sun.xml.internal.ws.api.pipe.Fiber.doRun(Fiber.java:531)
         at com.sun.xml.internal.ws.api.pipe.Fiber.runSync(Fiber.java:428)
         at com.sun.xml.internal.ws.client.Stub.process(Stub.java:211)
         at com.sun.xml.internal.ws.client.sei.SEIStub.doProcess(SEIStub.java:124)
         at com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:98)
         at com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:78)
         at com.sun.xml.internal.ws.client.sei.SEIStub.invoke(SEIStub.java:107)
         at $Proxy28.docInfoByID(Unknown Source)
         at eu.europa.efsa.virtual.library.services.client.TestDocInfo.main(TestDocInfo.java:20)
    Is there a way to pass right username and password?
    How can I understand which the user actually used?

  • Unable to start xsp web service - Windows Client

    Hi all,
    I've got a problem with the Windows client (Windows 7 64-bit). When I start the client I get an error that says:
    Unable to start xsp web service, iFolder will not be able to work, restart the application.
    The client actually starts up. However, I'm unable to do anything with it. Are there any logs I can provide that may give you a bit more insight into what's going on?
    I can connect from my mac client and a colleague can connect (from outside the firewall) from his Windows client.
    Any thoughts?
    Many thanks,
    Andrew

    I am still getting Unable to start xsp web service.
    I've found some more info in my event log. I have this error. Any ideas?
    Event code: 3008
    Event message: A configuration error has occurred.
    Event time: 3/25/2011 7:24:10 AM
    Event time (UTC): 3/25/2011 12:24:10 PM
    Event ID: c80ae9a584df49e181d063b3caf3b747
    Event sequence: 1
    Event occurrence: 1
    Event detail code: 0
    Application information:
    Application domain: d418b072-1-129455294438750000
    Trust level: Full
    Application Virtual Path: /simias10
    Application Path: C:\program files\ifolder\lib\simias\web\
    Machine name: XXX001892
    Process information:
    Process ID: 6016
    Process name: Simias.exe
    Account name: 123\Test
    Exception information:
    Exception type: HttpException
    Exception message: Could not load file or assembly 'System.EnterpriseServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.
    Request information:
    Request URL: http://127.0.0.1:1353/simias10/Simias.asmx
    Request path: /simias10/Simias.asmx
    User host address: 127.0.0.1
    User:
    Is authenticated: False
    Authentication Type:
    Thread account name: 123\Test
    Thread information:
    Thread ID: 8
    Thread account name: 123\Test
    Is impersonating: False
    Stack trace: at System.Web.Compilation.BuildManager.ReportTopLevel CompilationException()
    at System.Web.Compilation.BuildManager.EnsureTopLevel FilesCompiled()
    at System.Web.Hosting.HostingEnvironment.Initialize(A pplicationManager appManager, IApplicationHost appHost, IConfigMapPathFactory configMapPathFactory, HostingEnvironmentParameters hostingParameters)
    Custom event details:
    For more information, see Help and Support Center at

  • HP7520 Unable to Connect To Web Services

    I just (today) purchased a HP Photosmart 7520. I set it up and configured it to my wireless network. I have an Mac Airport Router. I have 1 Mac and 2 PC's printing to it fine (off the wireless network). The problem is that when I go to setup my eprint it says Unable to Connect to Web Services. The wireless report shows no errors and says its connected to the internet. HP support had me go into the service mode (a series of button pressing) and do a semi full reset which did not help the problem. Any ideas on why I can not connect to web services? HP spent about an hour on the phone with me and could not resolve.
    Thanks

    Hi jreyn25,
    Thank you for taking the time to respond.
    Please run the wireless setup wizard on the front panel of the printer. If you are unsure how to do this, the steps can be found on page 48 of your User Guide in the section titled “To connect the product with the Wireless Setup Wizard”. After connecting the printer you will be prompted to print a report. Please choose to do so. I have included a screen shot of what the report should like.
    I highlighted where you should find the printer’s IP address on the report. Please try and connect to the printer’s IP address that is showing on the report.   If you get a security pop-up when trying to get the embedded web server (EWS), choosing to continue will not harm your computer while you navigate within the EWS for your printer. If you encounter this error outside of your printer’s EWS, your computer could be at risk. You can find this information in the document titled Printer Does Not Maintain Wireless Connection.
    Please let me know how it goes.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • Re: HP Photosmart 7525 unable to connect to Web Services

    Gary,
    I'm having the same problem, unable to connect to web services.  Can you help?

    Hi @VinceASal,
    Welcome to the HP Support Forums.   I understand that you are getting a connection error message when trying to enable web services on your Photosmart 7525 printer.
    Please set manual IP address and manual DNS servers for the printer.  If you are unsure how to do this I have included a link to another post that has the steps, including screen shots, on how to do this.  Please do not worry that the screen shots are for a Photosmart 7510, the steps are the same.
    Please let me know the outcome.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

Maybe you are looking for

  • My Windows 7 64Bit Computer doesn't recognize my iPhone4S

    Just as the title states my computer here does not see or recognize my iPhone 4S. No matter what I have tried and done to get it to see and recognize my phone via my wireless network doesn't see it at all. I have forget this network, turned wifi off

  • Confirmation on Advance Format Drive

    Hello all, I have been searching everywhere for this, I think I found it once before, but lost it when I was moving. I am using a advanced format drive which means I need the 2mb boot partition labelled ef02. The problem I am having is when it comes

  • Exception in thread "main" error

    I have a real problem. I am trying to write a hello world program in java using native code. my java code is as follow : class HelloWorld { static { System.loadLibrary("Hello.so"); private native void print(); public static void main(String[] args) {

  • Selection issues in document

    Seem to have problems selecting item - now if I double click Fireworks no longer will allow me to adit text. I have to select, then highlight with the text tool. Zoom down with alt key & mouse only drops one scale - has anyone else had this problem??

  • Help I can't transfer video to another computer.

    What do I have to do to transfer a flash video to another computer. I published HTML to my usb stick and installed on another computer. When I run the file, the buttons dont work. All they do is flash. When the file is on my original computer, everyt